diff --git a/src/i18n/lang/cn.ts b/src/i18n/lang/cn.ts index 2549d56..c00888e 100644 --- a/src/i18n/lang/cn.ts +++ b/src/i18n/lang/cn.ts @@ -322,6 +322,7 @@ export default { Scrap_ScrapDetails: '报废明细', operatingTime: '操作时间', finishedProductReport: '报废明细', + product_Tip10: '数量已达上限,请勿扫描', //领用借用 borrow_OrderNo: '单号', diff --git a/src/i18n/lang/en.ts b/src/i18n/lang/en.ts index c4e7010..8222260 100644 --- a/src/i18n/lang/en.ts +++ b/src/i18n/lang/en.ts @@ -326,6 +326,7 @@ export default { Scrap_ScrapDetails: 'Scrap detail', operatingTime: 'OperatingTime', finishedProductReport: 'Scrap details', + product_Tip10: 'The number has reached the upper limit. Do not scan', //领用借用 borrow_OrderNo: 'Order No', diff --git a/src/pages/product/warehouse/wholeCollect/index.vue b/src/pages/product/warehouse/wholeCollect/index.vue index 96d55a7..8122ec1 100644 --- a/src/pages/product/warehouse/wholeCollect/index.vue +++ b/src/pages/product/warehouse/wholeCollect/index.vue @@ -146,7 +146,7 @@ export default class ProductCheckReceipt extends BasePage { return; } if (this.Some.actualQty >= this.Some.qty) { - this.customToast(this.$t('message.barcode') as string); + this.customToast(this.$t('message.product_Tip10') as string); return; } let params = { diff --git a/src/pages/product/warehouse/wholeScrap/index.vue b/src/pages/product/warehouse/wholeScrap/index.vue index 8513226..87127de 100644 --- a/src/pages/product/warehouse/wholeScrap/index.vue +++ b/src/pages/product/warehouse/wholeScrap/index.vue @@ -126,7 +126,7 @@ export default class productCheckReceipt extends BasePage { return; } if (this.Some.actualQty >= this.Some.qty) { - this.customToast(this.$t('message.barcode') as string); + this.customToast(this.$t('message.product_Tip10') as string); return; } let params = { diff --git a/src/pages/raw/handover/returning/index.vue b/src/pages/raw/handover/returning/index.vue index c8305d0..8a7ebd1 100644 --- a/src/pages/raw/handover/returning/index.vue +++ b/src/pages/raw/handover/returning/index.vue @@ -35,7 +35,7 @@ - +