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.

97 lines
2.5 KiB

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