本专业高风险静态页面完成

This commit is contained in:
2026-08-20 17:21:37 +08:00
parent b8571da035
commit 2ac8cf91e9
12 changed files with 1274 additions and 212 deletions
+3
View File
@@ -23,9 +23,12 @@ export const views: Record<LastLevelRouteKey, RouteComponent | (() => Promise<Ro
changestatistics: () => import("@/views/changeStatistics/index.vue"),
docs_archives: () => import("@/views/docs/archives/index.vue"),
docs_query: () => import("@/views/docs/query/index.vue"),
home_highrisk: () => import("@/views/home/highRisk/index.vue"),
home_highriskdetail: () => import("@/views/home/highRiskDetail/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"),
home_mytask: () => import("@/views/home/myTask/index.vue"),
home_pending: () => import("@/views/home/pending/index.vue"),
home_process: () => import("@/views/home/process/index.vue"),
home_processdetail: () => import("@/views/home/processDetail/index.vue"),
+44 -5
View File
@@ -127,6 +127,29 @@ export const generatedRoutes: GeneratedRoute[] = [
order: 1
},
children: [
{
name: 'home_highrisk',
path: '/home/highrisk',
component: 'view.home_highrisk',
meta: {
title: 'home_highrisk',
i18nKey: 'route.home_highrisk',
icon: '',
order: 6
}
},
{
name: 'home_highriskdetail',
path: '/home/highriskdetail',
component: 'view.home_highriskdetail',
meta: {
title: 'home_highriskdetail',
i18nKey: 'route.home_highriskdetail',
activeMenu: 'home_highrisk',
hideInMenu: true,
icon: ''
}
},
{
name: 'home_index',
path: '/home/index',
@@ -134,7 +157,8 @@ export const generatedRoutes: GeneratedRoute[] = [
meta: {
title: 'home_index',
i18nKey: 'route.home_index',
icon: ''
icon: '',
order: 1
}
},
{
@@ -144,7 +168,8 @@ export const generatedRoutes: GeneratedRoute[] = [
meta: {
title: 'home_initiatechange',
i18nKey: 'route.home_initiatechange',
icon: ''
icon: '',
order: 2
}
},
{
@@ -154,7 +179,19 @@ export const generatedRoutes: GeneratedRoute[] = [
meta: {
title: 'home_mydraft',
i18nKey: 'route.home_mydraft',
icon: ''
icon: '',
order: 3
}
},
{
name: 'home_mytask',
path: '/home/mytask',
component: 'view.home_mytask',
meta: {
title: 'home_mytask',
i18nKey: 'route.home_mytask',
icon: '',
order: 5
}
},
{
@@ -164,7 +201,8 @@ export const generatedRoutes: GeneratedRoute[] = [
meta: {
title: 'home_pending',
i18nKey: 'route.home_pending',
icon: ''
icon: '',
order: 4
}
},
{
@@ -174,7 +212,8 @@ export const generatedRoutes: GeneratedRoute[] = [
meta: {
title: 'home_process',
i18nKey: 'route.home_process',
icon: ''
icon: '',
order: 7
}
},
{
+3
View File
@@ -174,9 +174,12 @@ const routeMap: RouteMap = {
"docs_archives": "/docs/archives",
"docs_query": "/docs/query",
"home": "/home",
"home_highrisk": "/home/highrisk",
"home_highriskdetail": "/home/highriskdetail",
"home_index": "/home/index",
"home_initiatechange": "/home/initiatechange",
"home_mydraft": "/home/mydraft",
"home_mytask": "/home/mytask",
"home_pending": "/home/pending",
"home_process": "/home/process",
"home_processdetail": "/home/processdetail",