From 4184b29cf0a0d868e91e82c714f08c3a9e68c893 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=A3=E5=9C=A3=E5=8D=8E?= <752718920@qq.com> Date: Wed, 1 Nov 2023 22:59:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=B4=A6=E6=88=B7=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1=E7=9A=84=E5=AF=BC=E5=87=BAexcel=E7=9A=84=E6=A0=87?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jshERP-web/src/views/report/AccountReport.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jshERP-web/src/views/report/AccountReport.vue b/jshERP-web/src/views/report/AccountReport.vue index a753465c..4087c5d6 100644 --- a/jshERP-web/src/views/report/AccountReport.vue +++ b/jshERP-web/src/views/report/AccountReport.vue @@ -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]