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