From b00ed60112fc0405aa306ae2f0888ae39bb8b404 Mon Sep 17 00:00:00 2001 From: lijuncheng Date: Tue, 2 Jul 2024 08:58:48 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=8B=86=E7=AE=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fe/PDA/mycomponents/coms/comUnPacking.vue | 4 ++-- fe/PDA/pages/request/sparePartIssueRequestListDetail.vue | 2 +- fe/PDA/pages/task/thirdLocationJobDetail.vue | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/fe/PDA/mycomponents/coms/comUnPacking.vue b/fe/PDA/mycomponents/coms/comUnPacking.vue index 72d25b349..560459fa6 100644 --- a/fe/PDA/mycomponents/coms/comUnPacking.vue +++ b/fe/PDA/mycomponents/coms/comUnPacking.vue @@ -127,9 +127,9 @@ } else { let qty = Number(that.value); if (that.vaildMaxValue) { - if (qty > that.defaultValue) { + if (qty >= that.defaultValue) { that.value = that.defaultValue; - this.showMessage('数量不能大于' + that.defaultValue); + this.showMessage('数量不能大于等于' + that.defaultValue); } else { if (!that.allowZero) //不允许0 diff --git a/fe/PDA/pages/request/sparePartIssueRequestListDetail.vue b/fe/PDA/pages/request/sparePartIssueRequestListDetail.vue index 5ccb501c6..2de6c797d 100644 --- a/fe/PDA/pages/request/sparePartIssueRequestListDetail.vue +++ b/fe/PDA/pages/request/sparePartIssueRequestListDetail.vue @@ -3,7 +3,7 @@ - + diff --git a/fe/PDA/pages/task/thirdLocationJobDetail.vue b/fe/PDA/pages/task/thirdLocationJobDetail.vue index 4bf7f1d30..90625d90d 100644 --- a/fe/PDA/pages/task/thirdLocationJobDetail.vue +++ b/fe/PDA/pages/task/thirdLocationJobDetail.vue @@ -438,7 +438,7 @@ return; } if(this.datacontent.details[0].recommendQty!=this.datacontent.details[0].handledQty){ - showConfirmMsg("推荐数量["+this.datacontent.details[0].recommendQty+"]与申请数量["+this.datacontent.details[0].handledQty+"]不相等,是否继续收货?",res=>{ + showConfirmMsg("实际数量与推荐数量不一致,是否继续收货?",res=>{ if(res){ that.finsh(); }