资料档案库完成

This commit is contained in:
2026-08-14 16:53:18 +08:00
parent 2f4bc63cfa
commit e0dd6608a9
8 changed files with 287 additions and 4 deletions
+2
View File
@@ -21,6 +21,8 @@ export const views: Record<LastLevelRouteKey, RouteComponent | (() => Promise<Ro
changeledger_mychanges: () => import("@/views/changeLedger/myChanges/index.vue"),
changeledger_workshopchanges: () => import("@/views/changeLedger/workshopChanges/index.vue"),
changestatistics: () => import("@/views/changeStatistics/index.vue"),
docs_archives: () => import("@/views/docs/archives/index.vue"),
docs_query: () => import("@/views/docs/query/index.vue"),
home_index: () => import("@/views/home/index/index.vue"),
home_initiatechange: () => import("@/views/home/initiateChange/index.vue"),
home_mydraft: () => import("@/views/home/myDraft/index.vue"),
+33
View File
@@ -83,6 +83,39 @@ export const generatedRoutes: GeneratedRoute[] = [
order: 3
}
},
{
name: 'docs',
path: '/docs',
component: 'layout.base',
meta: {
title: 'docs',
i18nKey: 'route.docs',
icon: 'mage:book',
order: 4
},
children: [
{
name: 'docs_archives',
path: '/docs/archives',
component: 'view.docs_archives',
meta: {
title: 'docs_archives',
i18nKey: 'route.docs_archives',
icon: '',
}
},
{
name: 'docs_query',
path: '/docs/query',
component: 'view.docs_query',
meta: {
title: 'docs_query',
i18nKey: 'route.docs_query',
icon: '',
}
}
]
},
{
name: 'home',
path: '/home',
+3
View File
@@ -170,6 +170,9 @@ const routeMap: RouteMap = {
"changeledger_mychanges": "/changeledger/mychanges",
"changeledger_workshopchanges": "/changeledger/workshopchanges",
"changestatistics": "/changestatistics",
"docs": "/docs",
"docs_archives": "/docs/archives",
"docs_query": "/docs/query",
"home": "/home",
"home_index": "/home/index",
"home_initiatechange": "/home/initiatechange",