충전 관리

This commit is contained in:
2023-03-20 09:09:08 +09:00
parent 84ff3d0317
commit 80bb146240

View File

@@ -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();
},
//달력 셋팅