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.
 
 
 
 
 
 

44 lines
1023 B

//大众-FIS结算-路由
import Layout from '@/layout'
const btcarDataRouter = {
path: '/cpat',
component: Layout,
redirect: 'pg',
name: 'btcar',
//hidden: true,
meta: {
//requiresAuth: true,
title: '一轿奔腾',
index: 0,
type: 'crm',
icon: '单据导入',
keepAlive: false,
},
children: [
{
path: 'hq-car-platform',
component: () => import('@/views/ux/vw/dataInput/hq_bt'),
name: 'ERPEI',//命名路由
meta: {
title: '一轿奔腾导入',
roles: ['SettleAccount.Boms'],//控制页面角色(可以设置多个角色)
icon: '结算'
}
},
{
path: 'hq-car-platform-export',
component: () => import('@/views/ux/vw/dataInput/hq_m'),
name: 'ERPEI',//命名路由
meta: {
title: '一轿奔腾结算核对输出',
//roles: ['SettleAccount.Boms'],//控制页面角色(可以设置多个角色)
icon: '结算'
}
},
]
}
export default btcarDataRouter