From b5765083caeecbf116b1bbf9a6ddf3c31424f5f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=AD=A3=E6=98=93?= Date: Tue, 3 Jun 2025 13:44:02 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=A5=E5=B7=A5=E6=8F=90=E4=BA=A4=E6=9B=B4?= =?UTF-8?q?=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/produceManagement/process/process.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pages/produceManagement/process/process.vue b/pages/produceManagement/process/process.vue index 616a93a..d9a0747 100644 --- a/pages/produceManagement/process/process.vue +++ b/pages/produceManagement/process/process.vue @@ -248,11 +248,14 @@ export default { } if(this.processName === '出货'){ reportWorkOrderApi.ShipmentProcessReportwork(params).then((res) => { - if (res.code === 200) { + if (res.code === 200 && res.data === "成功") { this.uModal2.show = false; this.uModal.content = '出货成功!'; this.openModal(); this.clear(); + }else{ + this.uModal.content = res.data; + this.openModal(); } }); }else{