diff --git a/src/components/dashboard/BannerSection.vue b/src/components/dashboard/BannerSection.vue index 769dab4..bd6c56a 100644 --- a/src/components/dashboard/BannerSection.vue +++ b/src/components/dashboard/BannerSection.vue @@ -37,10 +37,10 @@ {{ item.name }} - {{ t('dashboard.taskCode', { value: item.code }) }} - {{ t('dashboard.taskType', { value: item.type }) }} - {{ t('dashboard.taskTarget', { value: item.deviceName }) }} - {{ t('dashboard.createTime', { value: formatDate(item.createTime) }) }} + {{ translateWithParams('dashboard.taskCode', { value: item.code }) }} + {{ translateWithParams('dashboard.taskType', { value: item.type }) }} + {{ translateWithParams('dashboard.taskTarget', { value: item.deviceName }) }} + {{ translateWithParams('dashboard.createTime', { value: formatDate(item.createTime) }) }} @@ -53,6 +53,7 @@