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.

95 lines
2.8 KiB

4 years ago
//FIS结算
import Layout from '@/layout'
const billdataRouter = {
path: '/vw-car-kb',
component: Layout,
redirect: 'vw-car-kb',
name: 'basedata',
//hidden: true,
meta: {
//requiresAuth: true,
title: '大众销售结算与开票报表',
4 years ago
index: 0,
type: 'crm',
icon: '销售',
keepAlive: false,
},
children: [
{
path: '/IssuedUnsettled',
component: () => import('@/views/ux/billManage/IssuedUnsettled/index'),
name: 'IssuedUnsettled',//命名路由
meta: {
title: '大众准时化未结明细',
4 years ago
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
icon: '报表'
}
},
{
path: '/settledPartAndErpPartPriceDiff',
component: () => import('@/views/ux/billManage/settledPartAndErpPartPriceDiff/index'),
name: 'SettledPartAndErpPartPriceDiff',//命名路由
meta: {
title: '大众准时化未结比对',
4 years ago
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
icon: '结算'
}
},
{
path: '/audiAndvw1',
component: () => import('@/views/ux/billManage/audiAndvw'),
name: 'audiAndvw',//命名路由
meta: {
title: '准时化未结差异比对',
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
icon: '售后'
}
},
4 years ago
{
path: '/InvoiceSettledDiff',
component: () => import('@/views/ux/billManage/InvoiceSettledDiff'),
name: 'InvoiceSettledDiff',//命名路由
meta: {
title: '发票与结算核对汇总',
4 years ago
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
icon: '结算对比'
}
},
{
path: '/FisUnSettledDiff',
component: () => import('@/views/ux/billManage/FisUnSettledDiff'),
name: 'FisUnSettledDiff',//命名路由
meta: {
title: '准时化交货与结算核对',
4 years ago
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
icon: '看板'
}
},
{
path: '/priceQtyDiff',
component: () => import('@/views/ux/billManage/PriceQtyDiff'),
name: 'PriceQtyDiff',//命名路由
meta: {
title: '准时化结算数量差异比对',
4 years ago
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
icon: '售后'
}
},
{
path: '/audiAndvw',
component: () => import('@/views/ux/billManage/audiAndvw'),
name: 'audiAndvw',//命名路由
meta: {
title: '准时化结算门板价格差异',
4 years ago
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
icon: '售后'
}
},
4 years ago
]
}
export default billdataRouter