From e59fa8761a4bedb41c2183a0794c11e9586f4d01 Mon Sep 17 00:00:00 2001 From: ulleo Date: Tue, 3 Dec 2024 17:09:56 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=B7=A5=E4=BD=9C=E5=8F=B0):=20=E5=9B=BD?= =?UTF-8?q?=E9=99=85=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-frontend/src/views/share/share/ShareGrid.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/core-frontend/src/views/share/share/ShareGrid.vue b/core/core-frontend/src/views/share/share/ShareGrid.vue index 48b2038890..42e02fad34 100644 --- a/core/core-frontend/src/views/share/share/ShareGrid.vue +++ b/core/core-frontend/src/views/share/share/ShareGrid.vue @@ -31,9 +31,9 @@ const state = reactive({ tableData: [], curTypeList: ['all_types', 'panel', 'screen'], tableColumn: [ - { field: 'creator', label: '分享人' }, - { field: 'time', label: '分享时间', type: 'time' }, - { field: 'exp', label: '有效期', type: 'time' } + { field: 'creator', label: t('visualization.who_share') }, + { field: 'time', label: t('visualization.when_share'), type: 'time' }, + { field: 'exp', label: t('visualization.over_time'), type: 'time' } ] })