/**大众看板、备件数据比对路由 */ //import Layout from '@/layout/firstLayout' import Layout from '@/layout' const wheeldataRouter = { path: '/cpat/report/', component: Layout, redirect: 'cpat',//重定向 name: 'WheelData', meta: { // requiresAuth: true, title: '大众看板、备件报表', //index: 0, // type: 'crm', icon: '对比', //keepAlive: false, }, children: [ { path: 'kbwithcode', component: () => import('@/views/ux/billManage/kanBanWithCode'), name: 'KanBanWithCode',//命名路由 meta: { title: '大众看板结算与交货核对', //roles: ['SettleAccount.EstimatedStockDiffReports'],//控制页面角色(可以设置多个角色) icon: '对比' } }, { path: 'vwsparepart', component: () => import('@/views/ux/billManage/sparePart'), name: 'SparePartReport',//命名路由 meta: { title: '大众备件结算核对', //roles: ['abpvnext_master.ProjectPeople'],//控制页面角色(可以设置多个角色) icon: '二配' } } ] } export default wheeldataRouter