/* 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' } } ] } ]