From fb725bba03ee4672900ffb0f30f7f55ef3304e84 Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Mon, 15 May 2023 18:00:45 +0800 Subject: [PATCH] =?UTF-8?q?=E5=86=B7=E9=93=BE=E6=8A=A5=E5=91=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/inout/orderDetailBiz.js | 8 ++ src/views/inout/DialogCheck.vue | 151 ++++++++++++++++++++++-- src/views/inout/InvoiceRegistration.vue | 14 +-- src/views/inout/IoAuditedOrder.vue | 134 ++++++++++++++++++++- src/views/inout/IoCheckAuditOrder.vue | 42 ++++++- src/views/inout/IoCheckSuccessOrder.vue | 52 +++++++- 6 files changed, 381 insertions(+), 20 deletions(-) diff --git a/src/api/inout/orderDetailBiz.js b/src/api/inout/orderDetailBiz.js index 776a65aa..49a51756 100644 --- a/src/api/inout/orderDetailBiz.js +++ b/src/api/inout/orderDetailBiz.js @@ -41,6 +41,14 @@ export function updateById(data) { }); } +export function updateBizById(data) { + return axios({ + url: "/udiwms/inout/bizDetail/updateById", + method: "post", + data: data + }); +} + export function insertInvoice(params) { return axios({ url: "/udiwms/inout/biz/insertInvoice", diff --git a/src/views/inout/DialogCheck.vue b/src/views/inout/DialogCheck.vue index e55c8215..fe0ccd83 100644 --- a/src/views/inout/DialogCheck.vue +++ b/src/views/inout/DialogCheck.vue @@ -141,17 +141,18 @@ :limit="1" :headers="headers" :on-exceed="uploadHandleExceed" - accept=".jpg,.png,.pdf,.doc" + accept=".jpg,.png" :on-change="uploadOnchange" :on-success="uploadHandleSuccess" :on-error="uploadHandleError" + :on-before="uploadHandleBefore" :file-list="fileList" :data="{type:'image2'}" :auto-upload="true"> {{ choiceFile }} -
只能上传 jpg,png,pdf,doc 文件,且不超过 10 MB
+
只能上传 jpg,png 文件,且不超过 10 MB
@@ -172,6 +173,61 @@ + + + + +
+ 冷链报告上传: +
+
+ + + + + {{ choiceFile1 }} + +
只能上传 jpg,png 文件,且不超过 10 MB
+
+ +
+
+ +
+ 冷链报告预览: +
+
+ + + 冷链报告预览 + + + + + + +
+ + + @@ -181,8 +237,7 @@ -