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(); }); },