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.

105 lines
3.3 KiB

4 years ago
//FIS结算
import Layout from '@/layout'
const billdataRouter = {
4 years ago
path: '/cpat-report',
4 years ago
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: [
{
4 years ago
path: 'unsettled-detail',//大众准时化未结明细表(包含漏结,漏结要有标识)
4 years ago
component: () => import('@/views/ux/billManage/IssuedUnsettled/index'),
4 years ago
name: 'UnsettledDetail',//命名路由
4 years ago
meta: {
title: '大众准时化未结明细',
4 years ago
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
icon: '报表'
}
},
{
4 years ago
path: 'unsettled-diff',
component: () => import('@/views/ux/billManage/UnSettledDiff/index'),
name: 'UnSettledDiff',//命名路由
4 years ago
meta: {
title: '大众准时化未结比对',
4 years ago
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
icon: '结算'
}
},
{
4 years ago
path: 'unSettle-diffExport',
component: () => import('@/views/ux/billManage/UnSettleDiffExport'),
name: 'UnSettleDiffExport',//命名路由
meta: {
title: '准时化未结差异比对',
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
icon: '售后'
}
},
4 years ago
{
4 years ago
path: 'invoice-settled/diff',
4 years ago
component: () => import('@/views/ux/billManage/InvoiceSettledDiff'),
name: 'InvoiceSettledDiff',//命名路由
meta: {
title: '发票与结算核对汇总',
4 years ago
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
icon: '结算对比'
}
},
{
4 years ago
path: 'invoice-settled/detaildiff',
component: () => import('@/views/ux/billManage/InvoiceSettledDetailDiff'),
name: 'InvoiceSettledDetailDiff',//命名路由
4 years ago
meta: {
4 years ago
title: '发票与结算核对明细',
4 years ago
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
4 years ago
icon: '结算对比'
4 years ago
}
},
{
4 years ago
path: 'FisUnSettledDiff',
component: () => import('@/views/ux/billManage/FisUnSettledDiff'),
name: 'FisUnSettledDiff',//命名路由
4 years ago
meta: {
4 years ago
title: '准时化交货与结算核对',
4 years ago
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
4 years ago
icon: '看板'
4 years ago
}
},
{
4 years ago
path: 'unInvoice-settled/detailDiff',
component: () => import('@/views/ux/billManage/UnInvoiceSettledDetailDiff'),
name: 'UnInvoiceSettledDetailDiff',//命名路由
4 years ago
meta: {
4 years ago
title: '准时化结算数量差异比对',
4 years ago
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
icon: '售后'
}
},
{
path: 'settle-doorPanel',
component: () => import('@/views/ux/billManage/SettleDoorPanel'),
name: 'SettleDoorPanel',//命名路由
meta: {
title: '准时化结算门板价格差异',
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
icon: '售后'
}
},
4 years ago
]
}
export default billdataRouter