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