diff --git a/frontend/src/modules/custMgt/views/ChrgList.vue b/frontend/src/modules/custMgt/views/ChrgList.vue index 39b2bf6..1aabc90 100644 --- a/frontend/src/modules/custMgt/views/ChrgList.vue +++ b/frontend/src/modules/custMgt/views/ChrgList.vue @@ -169,6 +169,25 @@ export default { }, mounted() { + // 달력 세팅 + + let page = 1; + // 페이지 정보 및 검색 조건 + const getCondition = this.$store.getters['searchcondition/getSearchCondition']; + + // store에 저장된 페이지 정보 및 검색 조건을 불러오기 + let isKeep = false; + /* + if (getCondition) { + this.grid.pagePerRows = getCondition.perPage; + this.grid.params = getCondition.params; + page = getCondition.page; + isKeep = true; + } + */ + this.grid.pagePerRows = 50; + page = 1; + this.search(isKeep); }, methods: { @@ -180,6 +199,8 @@ export default { this.grid.params.startDt = moment(this.startDate).format('YYYYMM'); this.grid.params.endDt = moment(this.endDate).format('YYYYMM'); this.grid.params.searchType1 = this.searchType1; + this.$refs.table.search(this.grid.params, isKeep); + this.sendStoreData(); }, //달력 셋팅