mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 04:11:27 +09:00
충전 관리
This commit is contained in:
@@ -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();
|
||||
},
|
||||
|
||||
//달력 셋팅
|
||||
|
||||
Reference in New Issue
Block a user