From faf8e0521f8244d157e0e30daf426442ba442616 Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Thu, 8 Jun 2023 15:25:12 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=91=E7=A5=A8=E4=BB=B7=E6=A0=BC=E4=B8=8D?= =?UTF-8?q?=E5=8C=B9=E9=85=8D=E6=97=B6=20=E7=8A=B6=E6=80=81=E6=98=AF?= =?UTF-8?q?=E6=9C=AA=E7=99=BB=E8=AE=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inout/InvoiceCkeck.vue | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/views/inout/InvoiceCkeck.vue b/src/views/inout/InvoiceCkeck.vue index fde0998..6bbbbb4 100644 --- a/src/views/inout/InvoiceCkeck.vue +++ b/src/views/inout/InvoiceCkeck.vue @@ -510,7 +510,7 @@ export default { type: "warning", }) .then(() => { - this.postInvoice(); + this.postInvoice("key"); }) .catch(() => { }); @@ -522,7 +522,7 @@ export default { }, - postInvoice() { + postInvoice(val) { insertInvoice(this.inputQuery) .then((response) => { if (response.code === 20000) { @@ -537,7 +537,11 @@ export default { }); // 加状态 - updateorderBiz(this.inputQuery.list).then((res) => { + let param={ + list:this.inputQuery.list, + key:val + } + updateorderBiz(param).then((res) => { this.closeDialog(); }); },