Newer
Older
XuZhouCallCenterFront / src / router / modules / mobile.js
TAN YUE on 17 Sep 2020 522 bytes 20200917 增加通信录管理
/* Layout */
import Layout from '@/layout/Layout'
export const mobileRouters = [{
  path: '/mobile',
  component: Layout,
  redirect: '/mobileList',
  name: 'Mobile',
  alwaysShow: true,
  meta: {
    title: '通信录管理',
    icon: 'icon-config', // 图标
    permission: '/mobileList'
  },
  children: [
    {
      path: '/mobileList',
      name: 'MobileList',
      component: () => import('@/views/mobile/mobileList'),
      meta: { title: '通信录查询', icon: '', permission: '/mobile/list' }
    }
  ]
}]