You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.1 KiB

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