From b5d16ced60b3cb2497dd8a887172970702beede6 Mon Sep 17 00:00:00 2001
From: JiilingLee <462362@qq.com>
Date: Fri, 20 Oct 2023 09:38:31 +0800
Subject: [PATCH] =?UTF-8?q?=E5=87=AD=E8=AF=81=20=E8=A1=8C=E6=95=B0?=
=?UTF-8?q?=E6=8D=AE?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/accounting/voucher/index.vue | 4 +-
src/views/accounting/voucherDetails/index.vue | 77 +------------------
2 files changed, 4 insertions(+), 77 deletions(-)
diff --git a/src/views/accounting/voucher/index.vue b/src/views/accounting/voucher/index.vue
index b779b259..b87dde17 100644
--- a/src/views/accounting/voucher/index.vue
+++ b/src/views/accounting/voucher/index.vue
@@ -534,7 +534,7 @@ export default {
/** 查询列表 */
getLineList(val) {
// 执行查询
- getVoucherDetailsPage({ voucherId: val }).then((response) => {
+ getVoucherDetailsPage({ voucherNum: val }).then((response) => {
this.tableData = response.data.list;
});
},
@@ -717,7 +717,7 @@ export default {
this.title = "修改会计凭证";
this.optType = "edit";
});
- this.getLineList(row.id);
+ this.getLineList(row.voucherNum);
this.getFJ(row.voucherNum);
this.getSPLC(row.id);
this.getDZFP(row.id);
diff --git a/src/views/accounting/voucherDetails/index.vue b/src/views/accounting/voucherDetails/index.vue
index 8a972e3a..be4b20ac 100644
--- a/src/views/accounting/voucherDetails/index.vue
+++ b/src/views/accounting/voucherDetails/index.vue
@@ -3,57 +3,12 @@