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
| const Layout = () => import('@/layout/index.vue');
|
| const systemRouter = {
| path: '/statistics',
| component: Layout,
| redirect: 'noRedirect',
| name: 'Statistics',
| meta: {
| title: '统计管理',
| icon: 'tongji'
| },
| children: [
| {
| path: 'power',
| component: () => import('@/views/statistics/power.vue'),
| name: 'power',
| meta: { title: '电源信息统计', icon: 'component', noCache: false }
| },
| {
| path: 'batt',
| component: () => import('@/views/statistics/batt.vue'),
| name: 'batt',
| meta: { title: '电池组信息统计', icon: 'component', noCache: false }
| },
| {
| path: 'dev-workstatus',
| component: () => import('@/views/statistics/devWorkstatus.vue'),
| name: 'devWorkstatus',
| meta: { title: '设备工作状态统计', icon: 'workstatus', noCache: false }
| },
| {
| path: 'device',
| component: () => import('@/views/statistics/device.vue'),
| name: 'deviceStatistics',
| meta: { title: '设备信息统计', icon: 'dev1', noCache: false }
| },
| {
| path: 'batt-hr',
| component: () => import('@/views/statistics/battHr.vue'),
| name: 'battHr',
| meta: { title: '蓄电池核容信息统计', icon: 'component', noCache: false }
| },
| {
| path: 'batt-cell',
| component: () => import('@/views/statistics/battCell.vue'),
| name: 'battCell',
| meta: { title: '电节数量统计', icon: 'component', noCache: false }
| },
| {
| path: 'station',
| component: () => import('@/views/statistics/station.vue'),
| name: 'station',
| meta: { title: '站点统计', icon: 'stations', noCache: false }
| },
| /////// ==================================================
| {
| path: 'batt-compare0',
| component: () => import('@/views/statistics/battCompare0.vue'),
| name: 'battCompare0',
| meta: { title: '蓄电池组对比分析1', icon: 'component', noCache: false, hidden: true }
| },
| {
| path: 'batt-compare1',
| component: () => import('@/views/statistics/battCompare1.vue'),
| name: 'battCompare1',
| meta: { title: '蓄电池组对比分析2', icon: 'component', noCache: false, hidden: true }
| },
| ]
| };
|
| export default systemRouter;
|
|