修改账户统计的导出excel的标题

This commit is contained in:
季圣华 2023-11-01 22:59:55 +08:00
parent ad9de421a9
commit 4184b29cf0

View File

@ -162,7 +162,7 @@
this.$refs.accountInOutList.disableSubmit = false;
},
exportExcel() {
let aoa = [['名称', '编号', '期初金额', '本月发生额', '账户流水']]
let aoa = [['名称', '编号', '期初金额', '本月发生额', '当前余额']]
for (let i = 0; i < this.dataSource.length; i++) {
let ds = this.dataSource[i]
let item = [ds.name, ds.serialNo, ds.initialAmount, ds.thisMonthAmount, ds.currentAmount]