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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
| import { createRouter, createWebHashHistory } from 'vue-router'
|
|
| const router = createRouter({
| history: createWebHashHistory(),
| routes: [
| {
| path: '/layout',
| name: 'home',
| meta: { title: '首页' },
| component: () => import('@/components/layout/AppLayout.vue'),
| children:
| [
| // {
| // path:'/avalue',
| // name:'avalue',
| // meta: {title: '风险评估'},
| // 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: "/avgDay",
| name: 'avgDay',
| meta: { title: '数据分险模型' , keepAlive: true},
| component: () => import('@/views/line_graph/DataRiskModel.vue')
| },
|
| // 数据风险排名
| {
| path: "/analysis",
| name: 'analysis',
| meta: { title: '数据风险排名' , keepAlive: true},
| component: () => import('@/views/line_graph/DataRiskRank.vue')
| },
| // 数据风险排名
| {
| path: "/riskrank",
| name: 'riskrank',
| meta: { title: '综合风险排名' , keepAlive: true },
| component: () => import('@/views/line_graph/SiteComprehensiveRskRanking.vue')
| },
|
| // 飞行巡检
| {
| path: "/edata",
| name: 'edata',
| meta: { title: '飞行巡检' , keepAlive: true},
| component: () => import('@/views/exception/FlightInspection.vue')
| },
|
| // 站点审核辅助
| {
| path: "/testData",
| name: 'testData',
| meta: { title: '站点审核辅助' , keepAlive: true},
| component: () => import('@/views/exception/SiteAuditAssistance.vue')
| },
|
|
| {
| path: "/hdata",
| name: 'hdata',
| meta: { title: '历史数据管理' , keepAlive: true},
| 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: "/detail/:siteName/:month",
| name: 'detail',
| meta: { title: '站点具体信息',transition: 'slide-left' },
| component: () => import('@/views/line_graph/components/SiteDetail.vue')
| },
|
| // 风险模型嵌入
| {
| path: "/subRiskModel",
| name: 'subRiskModel',
| meta: { title: '风险模型嵌入' },
| component: () => import('@/views/line_graph/components/subRiskModel.vue')
| },
|
| ],
| },
|
|
| // 登陆页面
| {
| path: "/login",
| name: 'login',
| component: () => import('@/views/login/LoginSystem.vue')
|
| },
| {
| path: '/',
| redirect: '/edata'
| },
| ]
| })
|
|
| export default router
|
|