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
| 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 }
| },
| {
| path: 'batt-compare2',
| component: () => import('@/views/statistics/battCompare2.vue'),
| name: 'battCompare2',
| meta: { title: '蓄电池组对比分析3', icon: 'component', noCache: false, hidden: true }
| },
| {
| path: 'dis-year',
| component: () => import('@/views/statistics/disYear.vue'),
| name: 'disYear',
| meta: { title: '本年度已放电', icon: 'component', noCache: false, }
| },
| {
| path: 'nodis-year',
| component: () => import('@/views/statistics/nodisYear.vue'),
| name: 'nodisYear',
| meta: { title: '本年度未放电', icon: 'component', noCache: false, }
| },
| {
| path: 'power-good',
| component: () => import('@/views/statistics/powerGood.vue'),
| name: 'powerGood',
| meta: { title: '优良电源数量统计', icon: 'component', noCache: false, }
| },
| {
| path: 'batt-good',
| component: () => import('@/views/statistics/battGood.vue'),
| name: 'battGood',
| meta: { title: '优良电池组数统计', icon: 'component', noCache: false, }
| },
| {
| path: 'batt-bad',
| component: () => import('@/views/statistics/battBad.vue'),
| name: 'battBad',
| meta: { title: '劣化电池组数统计', icon: 'component', noCache: false, }
| },
| {
| path: 'batt-damage',
| component: () => import('@/views/statistics/battDamage.vue'),
| name: 'battDamage',
| meta: { title: '损坏电池组数统计', icon: 'component', noCache: false, }
| },
| ]
| };
|
| export default systemRouter;
|
|