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.
84 lines
2.4 KiB
84 lines
2.4 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: '销售结算与开票报表',
|
||
|
index: 0,
|
||
|
type: 'crm',
|
||
|
icon: '销售',
|
||
|
keepAlive: false,
|
||
|
},
|
||
|
children: [
|
||
|
{
|
||
|
path: '/IssuedUnsettled',
|
||
|
component: () => import('@/views/ux/billManage/IssuedUnsettled/index'),
|
||
|
name: 'IssuedUnsettled',//命名路由
|
||
|
meta: {
|
||
|
title: '发出未结算报表',
|
||
|
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
|
||
|
icon: '报表'
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
path: '/settledPartAndErpPartPriceDiff',
|
||
|
component: () => import('@/views/ux/billManage/settledPartAndErpPartPriceDiff/index'),
|
||
|
name: 'SettledPartAndErpPartPriceDiff',//命名路由
|
||
|
meta: {
|
||
|
title: '总成定价和结算价对比',
|
||
|
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
|
||
|
icon: '结算'
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
path: '/InvoiceSettledDiff',
|
||
|
component: () => import('@/views/ux/billManage/InvoiceSettledDiff'),
|
||
|
name: 'InvoiceSettledDiff',//命名路由
|
||
|
meta: {
|
||
|
title: '结算与开票数据对比',
|
||
|
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
|
||
|
icon: '结算对比'
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
path: '/FisUnSettledDiff',
|
||
|
component: () => import('@/views/ux/billManage/FisUnSettledDiff'),
|
||
|
name: 'FisUnSettledDiff',//命名路由
|
||
|
meta: {
|
||
|
title: 'ERP总成开票报表',
|
||
|
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
|
||
|
icon: '看板'
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
path: '/priceQtyDiff',
|
||
|
component: () => import('@/views/ux/billManage/PriceQtyDiff'),
|
||
|
name: 'PriceQtyDiff',//命名路由
|
||
|
meta: {
|
||
|
title: '价差量差分析报表',
|
||
|
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
|
||
|
icon: '售后'
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
path: '/audiAndvw',
|
||
|
component: () => import('@/views/ux/billManage/audiAndvw'),
|
||
|
name: 'audiAndvw',//命名路由
|
||
|
meta: {
|
||
|
title: '二配报表',
|
||
|
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
|
||
|
icon: '售后'
|
||
|
}
|
||
|
},
|
||
|
]
|
||
|
}
|
||
|
|
||
|
export default billdataRouter
|
||
|
|