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;