From 4c461ff897c4b2973f414a853c2526cbc22bac44 Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Mon, 5 Jun 2023 17:04:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A3=80=E9=AA=8C=E6=8A=A5=E5=91=8A=20?= =?UTF-8?q?=E5=86=B7=E9=93=BE=E6=8A=A5=E5=91=8A=20=E5=8F=91=E7=A5=A8=20?= =?UTF-8?q?=E6=9B=B4=E6=8D=A2=E6=88=96result=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/inout/orderDetailBiz.js | 9 +++++++++ src/views/inout/InvoiceCkeck.vue | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/src/api/inout/orderDetailBiz.js b/src/api/inout/orderDetailBiz.js index bf93635..c69eb2a 100644 --- a/src/api/inout/orderDetailBiz.js +++ b/src/api/inout/orderDetailBiz.js @@ -108,6 +108,15 @@ export function parseInvoice(params) { }); } +export function updateorderResult(params) { + return axios({ + url: "/udiwms/inout/biz/updateorderResult", + method: "post", + data: params + }); +} + + diff --git a/src/views/inout/InvoiceCkeck.vue b/src/views/inout/InvoiceCkeck.vue index 3b1696f..cdb407c 100644 --- a/src/views/inout/InvoiceCkeck.vue +++ b/src/views/inout/InvoiceCkeck.vue @@ -528,7 +528,7 @@ export default { }); // 加状态 - updateorderBiz(this.inputQuery.list).then((res) => { + updateorderResult(this.inputQuery.list).then((res) => { this.closeDialog(); }); },