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 @@