/* Layout */ import Layout from '@/layout/Layout' export const shopManagement = [{ path: 'shopManagement', component: Layout, redirect: '/exampleTable', // 重定向 name: 'ShopManagement', alwaysShow: true, meta: { title: '商机管理', icon: '商机管理', permission: '/shop/main' }, children: [ { path: '/report', name: 'Report', component: () => import('@/views/business/report'), // 重定向的组件位置 meta: { title: '商机报备', icon: '', permission: '/shop/report' } }, { path: '/historyBusiness', name: 'HistoryBusiness', component: () => import('@/views/business/historyBusiness'), // 重定向的组件位置 meta: { title: '历史商机', icon: '', permission: '/shop/history' } } ] }]