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
46 lines
1.1 KiB
4 years ago
|
/** 车轮数据比对路由 */
|
||
|
//import Layout from '@/layout/firstLayout'
|
||
|
import Layout from '@/layout'
|
||
|
|
||
|
const wheeldataRouter = {
|
||
|
path: '/wheeldata',
|
||
|
component: Layout,
|
||
|
redirect: 'wheeldata',//重定向
|
||
|
name: 'WheelData',
|
||
|
meta: {
|
||
|
// requiresAuth: true,
|
||
|
title: '二次配套比对',
|
||
|
//index: 0,
|
||
|
// type: 'crm',
|
||
|
icon: '对比',
|
||
|
//keepAlive: false,
|
||
|
|
||
|
},
|
||
|
children: [
|
||
|
{
|
||
|
path: '/unSettleAccount',
|
||
|
component: () => import('@/views/ux/vw/dataInput/unSettleAccount'),
|
||
|
name: 'UnSettleAccount',//命名路由
|
||
|
meta: {
|
||
|
title: '二次配套比对报表',
|
||
|
//roles: ['SettleAccount.EstimatedStockDiffReports'],//控制页面角色(可以设置多个角色)
|
||
|
icon: '对比'
|
||
|
}
|
||
|
},
|
||
|
|
||
|
{
|
||
|
path: '/twojs',
|
||
|
component: () => import('@/views/ux/billManage/FisUnSettledDiff'),
|
||
|
name: 'twojs',//命名路由
|
||
|
meta: {
|
||
|
title: '二次配套结算',
|
||
|
//roles: ['abpvnext_master.ProjectPeople'],//控制页面角色(可以设置多个角色)
|
||
|
icon: '二配'
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
|
||
|
export default wheeldataRouter
|
||
|
|