From 91ac9e6e8ac8eb2e3b2c320ea6fbecd46947eb2e Mon Sep 17 00:00:00 2001 From: guoshuang Date: Tue, 15 Mar 2022 10:05:56 +0800 Subject: [PATCH] =?UTF-8?q?dam-7=20feat=20=E4=BA=A4=E6=8E=A5=E5=AE=8C?= =?UTF-8?q?=E6=88=90=E5=90=8E=E6=B2=A1=E6=9C=89=E6=95=B0=E6=8D=AE=E6=8F=90?= =?UTF-8?q?=E7=A4=BA=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/i18n/lang/cn.ts | 1 + src/i18n/lang/en.ts | 1 + src/pages/raw/handover/aggregating/model.ts | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/i18n/lang/cn.ts b/src/i18n/lang/cn.ts index cef1beb..aa296d6 100644 --- a/src/i18n/lang/cn.ts +++ b/src/i18n/lang/cn.ts @@ -150,6 +150,7 @@ export default { Pi_InputFactory: '请输入工厂代码', Pi_OrderNoNotSelected: '未选中订单号', Pi_NoDataFound: '未查询到数据', + Pi_NoData: '数据为0!', Pi_QueryResults: '查询结果', Pi_Summary: '汇总', Pi_ByOrder: '按单', diff --git a/src/i18n/lang/en.ts b/src/i18n/lang/en.ts index 0b69756..34b72b9 100644 --- a/src/i18n/lang/en.ts +++ b/src/i18n/lang/en.ts @@ -151,6 +151,7 @@ export default { Pi_InputFactory: 'Please input factory code', Pi_OrderNoNotSelected: 'Order number not selected', Pi_NoDataFound: 'No Data Found', + Pi_NoData: 'The data is 0!', Pi_QueryResults: 'Query result', Pi_Summary: 'By Summary', Pi_ByOrder: 'By Order', diff --git a/src/pages/raw/handover/aggregating/model.ts b/src/pages/raw/handover/aggregating/model.ts index 735a636..65603c8 100644 --- a/src/pages/raw/handover/aggregating/model.ts +++ b/src/pages/raw/handover/aggregating/model.ts @@ -221,7 +221,7 @@ export class AggregatingModule extends VuexModule { // icon: 'none', // title: 'No Data Found!', // }); - vm.customToast(vm.$t('message.Pi_NoDataFound') as any); + vm.customToast(vm.$t('message.Pi_NoData') as any); return { aggregateList }; } console.log('aggregateList', aggregateList);