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.
106 lines
2.8 KiB
106 lines
2.8 KiB
//大众-FIS结算-路由
|
|
import Layout from '@/layout'
|
|
|
|
const vwFisDataRouter = {
|
|
path: '/cpat',
|
|
component: Layout,
|
|
redirect: 'pg',
|
|
name: '业务数据',
|
|
//hidden: true,
|
|
meta: {
|
|
//requiresAuth: true,
|
|
title: '大众结算与开票导入',
|
|
index: 0,
|
|
type: 'crm',
|
|
icon: '单据导入',
|
|
keepAlive: false,
|
|
},
|
|
children: [
|
|
{
|
|
path: 'unsettle-account',
|
|
component: () => import('@/views/ux/vw/dataInput/r3-open'),
|
|
name: 'SettleAccount',//命名路由
|
|
meta: {
|
|
title: 'FIS未结算数据导入',
|
|
roles: ['SettleAccount.SettleAccounts'],//控制页面角色(可以设置多个角色)
|
|
icon: '结算'
|
|
}
|
|
},
|
|
{
|
|
path: 'settle-account-finish',
|
|
component: () => import('@/views/ux/vw/dataInput/r3'),
|
|
name: 'SettleAccount',//命名路由
|
|
meta: {
|
|
title: 'FIS已结算数据导入',
|
|
roles: ['SettleAccount.SettleAccounts'],//控制页面角色(可以设置多个角色)
|
|
icon: '结算'
|
|
}
|
|
},
|
|
{
|
|
path: 'invoice',
|
|
component: () => import('@/views/ux/basedata/Invoice/index'),
|
|
name: 'Invoices',//命名路由
|
|
meta: {
|
|
title: '大众发票汇总导入',
|
|
roles: ['SettleAccount.Invoices'],
|
|
icon: '对比'
|
|
}
|
|
},
|
|
{
|
|
path: 'kan-ban',
|
|
component: () => import('@/views/ux/vw/dataInput/vwKanBan/index'),
|
|
name: 'VWKanBan',//命名路由
|
|
meta: {
|
|
title: '看板结算明细导入',
|
|
//roles: ['SettleAccount.ItemInvoicePrices'],
|
|
icon: '发运'
|
|
}
|
|
},
|
|
{
|
|
path: 'scrap-claims',
|
|
component: () => import('@/views/ux/vw/dataInput/ScrapClaims'),
|
|
name: 'ScrapClaims',
|
|
meta: {
|
|
title: 'CP7报废和索赔导入',
|
|
roles: ['SettleAccount.FISs'],
|
|
icon: '文件'
|
|
}
|
|
},
|
|
|
|
{
|
|
path: 'spare-part',
|
|
component: () => import('@/views/ux/vw/dataInput/SparePart'),
|
|
name: 'SparePart',//命名路由
|
|
meta: {
|
|
title: '大众备件结算明细导入',
|
|
roles: ['SettleAccount.Boms'],//控制页面角色(可以设置多个角色)
|
|
icon: '结算'
|
|
}
|
|
},
|
|
|
|
{
|
|
path: 'hq-H-platform',
|
|
component: () => import('@/views/ux/vw/dataInput/hq_h'),
|
|
name: 'ERPEI',//命名路由
|
|
meta: {
|
|
title: '红旗H平台导入',
|
|
roles: ['SettleAccount.Boms'],//控制页面角色(可以设置多个角色)
|
|
icon: '结算'
|
|
}
|
|
},
|
|
{
|
|
path: 'hq-M-platform',
|
|
component: () => import('@/views/ux/vw/dataInput/hq_m'),
|
|
name: 'ERPEI',//命名路由
|
|
meta: {
|
|
title: '红旗M平台导入',
|
|
//roles: ['SettleAccount.Boms'],//控制页面角色(可以设置多个角色)
|
|
icon: '结算'
|
|
}
|
|
},
|
|
|
|
]
|
|
}
|
|
|
|
export default vwFisDataRouter
|
|
|
|
|