chore: 调整关于项目路由结构

This commit is contained in:
2024-11-23 23:28:46 +08:00
parent c2463fc450
commit 21913350e7
3 changed files with 23 additions and 16 deletions

View File

@@ -1,4 +1,4 @@
<svg width="22" height="16" viewBox="0 0 22 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<svg width="48" height="48" viewBox="0 0 22 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.72938 13.2709C1.31587 11.8234 1.31587 9.51246 2.72938 8.06503L7.9367 2.73274C9.39842 1.23594 11.8058 1.23594 13.2675 2.73274C14.681 4.18017 14.681 6.49116 13.2675 7.93859L8.06017 13.2709C6.59845 14.7677 4.19111 14.7677 2.72938 13.2709Z" fill="#12D2AC"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.94084 2.7323C9.40256 1.23549 11.8099 1.23549 13.2716 2.7323L18.4789 8.06459C19.8925 9.51202 19.8925 11.823 18.4789 13.2704C17.0172 14.7672 14.6099 14.7672 13.1482 13.2704L7.94084 7.93815C6.52733 6.49071 6.52733 4.17973 7.94084 2.7323Z" fill="#307AF2"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.7384 2.93044C9.30781 1.32337 11.8925 1.32337 13.4619 2.93045L15.8075 5.33229L10.6002 10.6646L5.39285 5.33229L7.7384 2.93044Z" fill="#0057FE"/>

Before

Width:  |  Height:  |  Size: 909 B

After

Width:  |  Height:  |  Size: 909 B

View File

@@ -69,21 +69,19 @@ export const systemRoutes: RouteRecordRaw[] = [
meta: { title: '关于项目', icon: 'apps', hidden: false, sort: 999 },
children: [
{
path: '/about/document',
name: 'AboutDocument',
meta: { title: '项目文档', icon: 'file', hidden: false, keepAlive: true },
children: [
{
path: '/about/document/api',
component: () => import('@/views/about/document/api/index.vue'),
meta: { title: 'API文档', icon: 'continew', hidden: false, keepAlive: true },
},
{
path: '/about/document/arco-design-vue',
component: () => import('@/views/about/document/arco-design-vue/index.vue'),
meta: { title: 'Arco Design文档', icon: 'arco', hidden: false, keepAlive: true },
},
],
path: '/about/document/continew',
component: () => import('@/views/about/document/continew/index.vue'),
meta: { title: '在线文档', icon: 'continew', hidden: false, keepAlive: true },
},
{
path: '/about/document/api',
component: () => import('@/views/about/document/api/index.vue'),
meta: { title: '接口文档', icon: 'continew', hidden: false, keepAlive: true },
},
{
path: '/about/document/arco-design-vue',
component: () => import('@/views/about/document/arco-design-vue/index.vue'),
meta: { title: 'Arco Design文档', icon: 'arco', hidden: false, keepAlive: true },
},
{
path: '/about/source',

View File

@@ -0,0 +1,9 @@
<template>
<GiIframe src="https://continew.top"></GiIframe>
</template>
<script lang='ts' setup>
defineOptions({ name: 'AboutDocumentContiNew' })
</script>
<style scoped lang="scss"></style>