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(); }