diff --git a/src/router/modules/statistic.js b/src/router/modules/statistic.js index 75fa739..3fcadaf 100644 --- a/src/router/modules/statistic.js +++ b/src/router/modules/statistic.js @@ -88,5 +88,30 @@ meta: { title: '话务综合统计', icon: '', permission: '/allCallStatistic' } } ] +}, { + path: '/effectiveStatistics', + component: Layout, + redirect: '/deptEffectiveStatistics', + name: 'EffectiveStatistics', + alwaysShow: true, + meta: { + title: '效能监察', + icon: 'icon-config', // 图标 + permission: '/effectiveStatistics' + }, + children: [ + { + path: '/deptEffectiveStatistics', + name: 'DeptEffectiveStatistics', + component: () => import('@/views/statistic/deptStatistic/deptStatistic'), + meta: { title: '部门效能监察', icon: '', permission: '/deptStatistics' } + }, + { + path: '/callStatisticsAll', + name: 'CallStatisticsAll', + component: () => import('@/views/statistic/callStatistic/allStatistic'), + meta: { title: '坐席效能监察', icon: '', permission: '/seatsStatistic' } + } + ] } ]