Newer
Older
XuZhouCallCenterFront / src / router / modules / effectiveStatistics.js
StephanieGitHub on 20 Jan 2021 869 bytes MOD: 调整菜单顺序
/* Layout */
import Layout from '@/layout/Layout'
export const effectiveRouters = [{
  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: '/sdeptStatistics' }
    },
    {
      path: '/seatStatisticsAll',
      name: 'seatStatisticsAll',
      component: () => import('@/views/statistic/seatStatistic/seatStatistic'),
      meta: { title: '坐席效能监察', icon: '', permission: '/seatStatistics' }
    }
  ]
}
]