Newer
Older
dcms_front / src / router / modules / suphandle.js
zhangyingjie on 7 Nov 2019 776 bytes 新增网格责任人管理,呼叫业务
/* Layout */
import Layout from '../../views/layout/Layout'
export const suphandleRouters = [
  {
    path: '/suphandle',
    name: 'suphandle',
    redirect: '/accessDept',
    hidden: true,
    meta: {
      title: '监督受理子系统',
      permission: ['/suphandle'],
      isSys: true
    }
  },
  {
    path: '/callBus',
    component: Layout,
    redirect: '/callBus',
    name: 'CallBus',
    alwaysShow: true,
    meta: {
      title: '呼叫业务',
      permission: ['/callBus'],
      sys: '/suphandle'
    },
    children: [
      {
        path: '/callCase',
        component: () => import('@/views/callCase/callCase'),
        name: 'CallCase',
        meta: { title: '建立案卷', icon: '', belongSys: '', permission: '/callCase' }
      }
    ]
  }
]