/** 数据比对路由 */ //import Layout from '@/layout/firstLayout' import Layout from '@/layout' const businessdataRouter = { path: '/vw-sparepart-js', component: Layout, redirect: 'vw-sparepart-js', name: '大众备件结算', meta: { //requiresAuth: true, title: '大众备件结算', index: 0, type: 'crm', icon: '业务', keepAlive: false, }, children: [ { path: '/yu-fahuo-kb', component: () => import('@/views/ux/businessdata/deliverGoodsDrag'), name: 'jfcarkb',//命名路由 meta: { title: '结算与开票数据对比', roles: ['SettleAccount.Reports'], icon: '发货' } }, { path: '/jf-car-kb', component: () => import('@/views/ux/businessdata/deliverGoods'), name: 'jfcarkb',//命名路由 meta: { title: '备件发出未结算数据', roles: ['SettleAccount.Reports'], icon: '发货' } }, { path: '/jf-car-consign', component: () => import('@/views/ux/businessdata/supplyGap'), name: 'JFCarConsign', meta: { title: '定价与结算单价对比', roles: ['SettleAccount.Reports'], icon: '供货' } }, { path: '/settlement', component: () => import('@/views/ux/billManage/FisUnSettledDiff'), name: 'FisUnSettledDiff',//命名路由 meta: { title: '开票汇总数据', roles: ['SettleAccount.Reports'], icon: '客户零件' } } ] } export default businessdataRouter