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.
45 lines
1.1 KiB
45 lines
1.1 KiB
/**大众看板、备件数据比对路由 */
|
|
//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
|
|
|
|
|