From 700e879efee51ea61bebbb150c662d0476a78108 Mon Sep 17 00:00:00 2001 From: royalpioneer Date: Thu, 12 Dec 2024 17:39:36 +0800 Subject: [PATCH] =?UTF-8?q?feat(frontend):=20=E6=B7=BB=E5=8A=A0=E4=BA=A7?= =?UTF-8?q?=E5=93=81=E6=96=87=E6=A1=A3=E5=85=A5=E5=8F=A3=20#8572=20#=20Rev?= =?UTF-8?q?iewed,=20transaction=20id:=2026634?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dbm-ui/frontend/src/App.vue | 15 ++++++++++++++- dbm-ui/frontend/src/locales/zh-cn.json | 1 + 2 files changed, 15 insertions(+), 1 deletion(-) 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。多个使用英文逗号、分号或换行分隔", + "产品文档": "产品文档", "这行勿动!新增翻译请在上一行添加!": "" }