diff --git a/dbm-ui/frontend/src/App.vue b/dbm-ui/frontend/src/App.vue index 463954d91c..92e2ebc105 100644 --- a/dbm-ui/frontend/src/App.vue +++ b/dbm-ui/frontend/src/App.vue @@ -22,6 +22,11 @@ @click="handleShowSystemVersionLog"> {{ t('版本日志') }} +
+ {{ t('产品文档') }} +
= { en: 'DBM | Tencent BlueKing', @@ -111,6 +117,13 @@ isShowSystemVersionLog.value = true; }; + const linkToDoc = () => { + const url = systemEnvironStore.urls.BK_HELPER_URL; + if (url) { + window.open(url, '_blank'); + } + }; + const handleSignOut = () => { InfoBox({ title: t('确认退出登录'), diff --git a/dbm-ui/frontend/src/locales/zh-cn.json b/dbm-ui/frontend/src/locales/zh-cn.json index ee8aecebb8..ef099ddf86 100644 --- a/dbm-ui/frontend/src/locales/zh-cn.json +++ b/dbm-ui/frontend/src/locales/zh-cn.json @@ -3714,5 +3714,6 @@ "% 不能单独使用": "% 不能单独使用", "访问 DB 名必须合法": "访问 DB 名必须合法", "请输入访问DB名_以字母开头_支持 % 通配符 或 % 单独使用代表ALL_多个使用英文逗号_分号或换行分隔": "请输入访问DB名,以字母开头,支持 % 通配符 或 % 单独使用代表ALL。多个使用英文逗号、分号或换行分隔", + "产品文档": "产品文档", "这行勿动!新增翻译请在上一行添加!": "" }