he wei
2025-06-03 a10f3b82e33756ed0cd62a0cbe83bab8674df16f
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
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: 'dev-workstatus',
      component: () => import('@/views/statistics/devWorkstatus.vue'),
      name: 'devWorkstatus',
      meta: { title: '设备工作状态统计', icon: 'workstatus', noCache: false }
    },
    {
      path: 'batt-hr',
      component: () => import('@/views/statistics/battHr.vue'),
      name: 'battHr',
      meta: { title: '蓄电池核容信息统计', icon: 'component', noCache: false }
    },
    {
      path: 'station',
      component: () => import('@/views/statistics/station.vue'),
      name: 'station',
      meta: { title: '站点统计', icon: 'stations', noCache: false }
    },
  ]
};
 
export default systemRouter;