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