From 06eebdd125c379a60a09093c1438f45d4ec5e5d1 Mon Sep 17 00:00:00 2001 From: lijuncheng Date: Tue, 18 Jun 2024 19:58:44 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=A3=85=E9=85=8D=E4=B8=8A?= =?UTF-8?q?=E6=9E=B6=E4=BB=BB=E5=8A=A1=E4=B8=BA=E6=88=90=E5=93=81=E5=85=A5?= =?UTF-8?q?=E5=BA=93=E4=BB=BB=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages.json | 2 +- src/pages/productPutaway/job/productPutawayDetail.vue | 11 +++++++---- src/pages/productPutaway/job/productPutawayJob.vue | 4 ++-- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/src/pages.json b/src/pages.json index ec171383..39cfa49e 100644 --- a/src/pages.json +++ b/src/pages.json @@ -896,7 +896,7 @@ { "path": "pages/productPutaway/job/fgProductPutawayJob", "style": { - "navigationBarTitleText": "装配上架任务", + "navigationBarTitleText": "成品入库任务", "enablePullDownRefresh": true, "titleNView": { // "autoBackButton": "true", diff --git a/src/pages/productPutaway/job/productPutawayDetail.vue b/src/pages/productPutaway/job/productPutawayDetail.vue index 54b45e4a..cdd6feab 100644 --- a/src/pages/productPutaway/job/productPutawayDetail.vue +++ b/src/pages/productPutaway/job/productPutawayDetail.vue @@ -114,7 +114,8 @@ type: "", isCheckLocation: false, switchCode: "", - scanedPackingNumber: '' + scanedPackingNumber: '', + hintTitle:"" }; }, onLoad(option) { @@ -123,10 +124,12 @@ this.scanedPackingNumber = option.scaned || ''; if (this.type == 'predict') { this.switchCode = "SemiPutawayLocationCodeValidate" - updateTitle("预生产上架任务"); + this.hintTitle="预生产上架" + updateTitle("预生产上架详情"); } else if (this.type == 'assemble') { this.switchCode = "FgPutawayLocationCodeValidate" - updateTitle("装配上架任务"); + this.hintTitle="成品入库" + updateTitle("成品入库详情"); } if (this.id != undefined) { //新建的任务自动接收 @@ -456,7 +459,7 @@ productPutawayJobSubmit(params).then(res => { uni.hideLoading() if (res.data) { - this.showCommitSuccessMessage("提交成功
生成制品上架记录
" + res.data) + this.showCommitSuccessMessage("提交成功
生成"+this.hintTitle+"记录
" + res.data) } else { this.showErrorMessage("提交失败[" + res.msg + "]") } diff --git a/src/pages/productPutaway/job/productPutawayJob.vue b/src/pages/productPutaway/job/productPutawayJob.vue index f7475548..7e1e5d0a 100644 --- a/src/pages/productPutaway/job/productPutawayJob.vue +++ b/src/pages/productPutaway/job/productPutawayJob.vue @@ -185,7 +185,7 @@ if (this.type == 'predict') { updateTitle("预生产上架任务(" + this.totalCount + ")"); } else if (this.type == 'assemble') { - updateTitle("装配上架任务(" + this.totalCount + ")"); + updateTitle("成品入库任务(" + this.totalCount + ")"); } if (list == null || list.length == 0) { this.loadingType = "nomore"; @@ -202,7 +202,7 @@ if (this.type == 'predict') { updateTitle("预生产上架任务(" + this.totalCount + ")"); } else if (this.type == 'assemble') { - updateTitle("装配上架任务(" + this.totalCount + ")"); + updateTitle("成品入库任务(" + this.totalCount + ")"); } this.loadingType = ""; uni.hideLoading();