diff --git a/locales/en-US.json b/locales/en-US.json index 67dc5f0a..48efddc9 100644 --- a/locales/en-US.json +++ b/locales/en-US.json @@ -8,7 +8,8 @@ "scrollReveal": "Scroll Reveal", "Axios": "Axios Request", "Table": "Table", - "Doc": "Doc" + "Doc": "Doc", + "DocLocal": "Doc (China)" }, "LayoutHeaderTooltipOptions": { "Reload": "Reload Current Page", diff --git a/locales/zh-CN.json b/locales/zh-CN.json index da21468e..87df69de 100644 --- a/locales/zh-CN.json +++ b/locales/zh-CN.json @@ -8,7 +8,8 @@ "scrollReveal": "滚动动画", "Axios": "请求", "Table": "表格", - "Doc": "文档" + "Doc": "文档", + "DocLocal": "文档 (国内地址)" }, "LayoutHeaderTooltipOptions": { "Reload": "刷新当前页面", diff --git a/src/components/RayLink/index.tsx b/src/components/RayLink/index.tsx index 8373116c..4d72b58c 100644 --- a/src/components/RayLink/index.tsx +++ b/src/components/RayLink/index.tsx @@ -27,13 +27,25 @@ const RayLink = defineComponent({ key: 'ray-js-note', src: 'https://note.youdao.com/s/ObWEe2BB', tooltip: 'Ray的前端学习笔记', - icon: 'https://avatars.githubusercontent.com/u/51957438?v=4', + icon: 'https://yunkuangao.com/images/longmao.jpeg', }, { key: 'ray-js-cover', src: 'https://note.youdao.com/s/IC8xKPdB', tooltip: 'Ray的面试题总结', - icon: 'https://avatars.githubusercontent.com/u/51957438?v=4', + icon: 'https://yunkuangao.com/images/longmao.jpeg', + }, + { + key: 'ray-template-doc', + src: 'https://xiaodaigua-ray.github.io/ray-template-doc/', + tooltip: 'Ray Template Doc', + icon: 'https://yunkuangao.com/images/longmao.jpeg', + }, + { + key: 'ray-template-doc-out', + src: 'https://ray.yunkuangao.com/ray-template-doc/', + tooltip: 'Ray Template Doc (国内地址)', + icon: 'https://yunkuangao.com/images/longmao.jpeg', }, ] diff --git a/src/router/modules/doc-local.ts b/src/router/modules/doc-local.ts new file mode 100644 index 00000000..8ee8f368 --- /dev/null +++ b/src/router/modules/doc-local.ts @@ -0,0 +1,10 @@ +export default { + path: '/doc', + name: 'doc', + component: () => import('@/views/doc/index'), + meta: { + i18nKey: 'DocLocal', + icon: 'doc', + windowOpen: 'https://ray.yunkuangao.com/ray-template-doc/', + }, +} diff --git a/src/router/modules/index.ts b/src/router/modules/index.ts index c96e48ec..c841bc5e 100644 --- a/src/router/modules/index.ts +++ b/src/router/modules/index.ts @@ -6,8 +6,19 @@ import scrollReveal from './scroll-reveal' import axios from './axios' import table from './table' import doc from './doc' +import docLocal from './doc-local' -const routes = [dashboard, echart, table, axios, scrollReveal, error, doc, reyl] +const routes = [ + dashboard, + echart, + table, + axios, + scrollReveal, + error, + doc, + docLocal, + reyl, +] export default routes