로그인 / 고객관리 / 시스템관리 ... 디자인 및 기능 수정 적용

This commit is contained in:
kimre
2022-07-12 22:22:17 +09:00
parent 3d7032432c
commit c64cf89919
32 changed files with 787 additions and 636 deletions

View File

@@ -143,7 +143,8 @@ export default {
endMonth:'',
row: {},
list:[],
totalCnt: '',
totalCnt: '',
pageType:'MONTH'
};
},
components: {
@@ -153,6 +154,7 @@ export default {
created(){
this.setPeriodDay(0);
this.getMonthList();
this.getExcelHeader();
},
destroyed() {
},
@@ -264,6 +266,7 @@ export default {
header: this.excelHeader,
dataOrder: 'header'
};
// console.log(data);
xlsx.export(this.list, saveFileName, options).then(() => {});
},