1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
| import { createRouter, createWebHistory } from 'vue-router'
|
|
| const router = createRouter({
| history: createWebHistory(import.meta.env.BASE_URL),
| routes: [
| {
| path: '/layout',
| name: 'home',
| meta: { title: '首页' },
| component: () => import('@/components/layout/AppLayout.vue'),
| children: [
|
| // 数据分险模型
| {
| path: "/avgDay",
| name: 'avgDay',
| meta: { title: '数据分险模型' },
| component: () => import('@/views/line_graph/DataRiskModel.vue')
| },
|
| // 数据风险排名
| {
| path: "/analysis",
| name: 'analysis',
| meta: { title: '数据风险排名' },
| component: () => import('@/views/line_graph/DataRiskRank.vue')
| },
| // 数据风险排名
| {
| path: "/riskrank",
| name: 'riskrank',
| meta: { title: '数据风险排名' },
| component: () => import('@/views/line_graph/SiteComprehensiveRskRanking.vue')
| },
|
| // 飞行巡检
| {
| path: "/edata",
| name: 'edata',
| meta: { title: '飞行巡检' },
| component: () => import('@/views/exception/FlightInspection.vue')
| },
|
| // 站点审核辅助
| {
| path: "/testData",
| name: 'testData',
| meta: { title: '站点审核辅助' },
| component: () => import('@/views/exception/SiteAuditAssistance.vue')
| },
|
|
| {
| path: "/hdata",
| name: 'hdata',
| meta: { title: '历史数据管理' },
| component: () => import('@/views/data_management/HistoryData.vue')
| },
| // 数据接入管理
| {
| path: "/management",
| name: 'management',
| meta: { title: '数据接入管理' },
| component: () => import('@/views/data_management/DataAccessManagement.vue')
| },
|
| // 业务报表
| {
| path: "/report",
| name: 'report',
| meta: { title: '业务报表' },
| component: () => import('@/views/data_management/BusinessReport.vue')
| },
|
| // 数据接入配置
| {
| path: "/setting",
| name: 'setting',
| meta: { title: '数据接入配置' },
| component: () => import('@/views/setting/SetConfiguration.vue')
| },
|
| ],
| },
| // 登陆页面
| {
| path: "/login",
| name: 'login',
| component: () => import('@/views/login/LoginSystem.vue')
|
| },
| {
| path: '/',
| redirect: '/edata'
| },
| ]
| })
|
| export default router
|
|