TC 수정

This commit is contained in:
kimre
2022-07-18 20:55:42 +09:00
parent 2069d87f49
commit 8475672b02
4 changed files with 22 additions and 24 deletions

View File

@@ -41,7 +41,7 @@
<div class="info">
<div class="count"> <span>{{ totalItems.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',') }}</span>
<div class="select_box NumberSe">
<select name="" id="" v-model="perPageCnt" @keyup.enter="search">
<select name="" id="" v-model="perPageCnt" @change="changePerPage()">
<option value="20">20</option>
<option value="50" selected>50</option>
<option value="100">100</option>
@@ -210,7 +210,10 @@ export default {
apprDetail(props) {
console.log(props)
this.$refs.apprDetailPop.apprDetailPopOpen(props)
}
},
changePerPage: function () { // 페이지당 조회할 개수
this.grid.pagePerRows = this.perPageCnt;
},
},
beforeRouteLeave(to, from, next) {