From 71ca94c93f6f969351c99ef2281a1ab4e1dc7668 Mon Sep 17 00:00:00 2001 From: wangyufei <2267742828@qq.com> Date: Thu, 22 Aug 2024 10:49:15 +0800 Subject: [PATCH] =?UTF-8?q?HL-5553WMS=20PDA=20=E7=89=A9=E6=96=99=E9=9A=94?= =?UTF-8?q?=E7=A6=BB=E4=BB=BB=E5=8A=A1=E6=89=A7=E8=A1=8C=E6=88=90=E5=8A=9F?= =?UTF-8?q?=E7=9A=84=E6=8F=90=E7=A4=BA=E8=AF=AD=E4=B8=8D=E6=AD=A3=E7=A1=AE?= =?UTF-8?q?=EF=BC=8C=E5=BA=94=E8=AF=A5=E6=98=AF=E7=94=9F=E6=88=90=E7=89=A9?= =?UTF-8?q?=E6=96=99=E9=9A=94=E7=A6=BB=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/inventoryMove/job/inventoryMoveDetail.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/pages/inventoryMove/job/inventoryMoveDetail.vue b/src/pages/inventoryMove/job/inventoryMoveDetail.vue index dad77e16..cdc32371 100644 --- a/src/pages/inventoryMove/job/inventoryMoveDetail.vue +++ b/src/pages/inventoryMove/job/inventoryMoveDetail.vue @@ -420,7 +420,11 @@ inventoryMoveSubmit(params).then(res => { uni.hideLoading() if (res.data) { - this.showCommitSuccessMessage("提交成功\n生成库存转移记录\n" + res.data) + let showTitle = this.title + if(this.title.indexOf('任务')==this.title.length-2){ + showTitle = this.title.replace('任务','') + } + this.showCommitSuccessMessage("提交成功\n生成"+showTitle+"记录\n" + res.data) } else { this.showErrorMessage("提交失败[" + res.msg + "]") }