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;