From b2402eb28e62d18fe2a918def7ea5666fb950957 Mon Sep 17 00:00:00 2001 From: JiilingLee <462362@qq.com> Date: Mon, 6 Nov 2023 11:40:26 +0800 Subject: [PATCH] =?UTF-8?q?=E5=87=AD=E8=AF=81=E9=99=84=E4=BB=B6=E3=80=81?= =?UTF-8?q?=E5=AE=A1=E6=89=B9=E6=B5=81=E7=A8=8B=E6=94=B9=E9=80=9A=E8=BF=87?= =?UTF-8?q?voucherId=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/accounting/voucher/index.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/views/accounting/voucher/index.vue b/src/views/accounting/voucher/index.vue index b1ff698f..f778a171 100644 --- a/src/views/accounting/voucher/index.vue +++ b/src/views/accounting/voucher/index.vue @@ -690,14 +690,14 @@ export default { /** 查询列表 */ getLineList(val) { // 执行查询 - getVoucherDetailsPage({ voucherNum: val }).then((response) => { + getVoucherDetailsPage({ voucherId: val }).then((response) => { this.tableData = response.data.list; }); }, /** 查询附件 */ getFJ(val) { // 执行查询 - getAttachmentPage({ voucherNum: val }).then((response) => { + getAttachmentPage({ voucherId: val }).then((response) => { if (response.data.total == 0) { this.showNull = true; } else { @@ -885,8 +885,8 @@ export default { this.title = "查看会计凭证"; this.optType = "view"; }); - this.getLineList(row.voucherNum); - this.getFJ(row.voucherNum); + this.getLineList(row.id); + this.getFJ(row.id); this.getSPLC(row.id); this.getDZFP(row.id); this.getYHHD(row.id); @@ -901,8 +901,8 @@ export default { this.title = "修改会计凭证"; this.optType = "edit"; }); - this.getLineList(row.voucherNum); - this.getFJ(row.voucherNum); + this.getLineList(row.id); + this.getFJ(row.id); this.getSPLC(row.id); this.getDZFP(row.id); this.getYHHD(row.id);