|
|
|
//大众-FIS结算-路由
|
|
|
|
import Layout from '@/layout'
|
|
|
|
|
|
|
|
const vwFisDataRouter = {
|
|
|
|
path: '/jskp',
|
|
|
|
component: Layout,
|
|
|
|
redirect: 'jskp',
|
|
|
|
name: '业务数据',
|
|
|
|
//hidden: true,
|
|
|
|
meta: {
|
|
|
|
//requiresAuth: true,
|
|
|
|
title: '大众结算与开票数据导入',
|
|
|
|
index: 0,
|
|
|
|
type: 'crm',
|
|
|
|
icon: '单据导入',
|
|
|
|
keepAlive: false,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: '/settleAccount',
|
|
|
|
component: () => import('@/views/ux/vw/dataInput/r3'),
|
|
|
|
name: 'SettleAccount',//命名路由
|
|
|
|
meta: {
|
|
|
|
title: 'FIS未结算数据导入',
|
|
|
|
roles: ['SettleAccount.SettleAccounts'],//控制页面角色(可以设置多个角色)
|
|
|
|
icon: '结算'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: '/settleAccount-finish',
|
|
|
|
component: () => import('@/views/ux/vw/dataInput/r3-open'),
|
|
|
|
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: 'itemInvoicePrice',
|
|
|
|
component: () => import('@/views/ux/vw/dataInput/itemInvoicePrice/index'),
|
|
|
|
name: 'ItemInvoicePrice',//命名路由
|
|
|
|
meta: {
|
|
|
|
title: '看板结算明细导入',
|
|
|
|
roles: ['SettleAccount.ItemInvoicePrices'],
|
|
|
|
icon: '发运'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: '/fis',
|
|
|
|
component: () => import('@/views/ux/vw/dataInput/fis'),
|
|
|
|
name: 'FIS',
|
|
|
|
meta: {
|
|
|
|
title: 'CP7报废和索赔导入',
|
|
|
|
roles: ['SettleAccount.FISs'],
|
|
|
|
icon: '文件'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
path: '/SettlementCrossReference',
|
|
|
|
component: () => import('@/views/ux/vw/dataInput/SettlementCrossReference'),
|
|
|
|
name: 'SettlementCrossReference',//命名路由
|
|
|
|
meta: {
|
|
|
|
title: '大众备件结算明细导入',
|
|
|
|
roles: ['SettleAccount.Boms'],//控制页面角色(可以设置多个角色)
|
|
|
|
icon: '结算'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
// {
|
|
|
|
// path: '/EP',
|
|
|
|
// component: () => import('@/views/ux/vw/dataInput/erpei'),
|
|
|
|
// name: 'ERPEI',//命名路由
|
|
|
|
// meta: {
|
|
|
|
// title: '二配结算表',
|
|
|
|
// roles: ['SettleAccount.Boms'],//控制页面角色(可以设置多个角色)
|
|
|
|
// icon: '结算'
|
|
|
|
// }
|
|
|
|
// },
|
|
|
|
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
export default vwFisDataRouter
|
|
|
|
|