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.
89 lines
2.7 KiB
89 lines
2.7 KiB
2 years ago
|
/** 车轮数据比对路由 */
|
||
|
//import Layout from '@/layout/firstLayout'
|
||
|
import Layout from '@/layout'
|
||
|
|
||
|
const HQOutDataRouter = {
|
||
|
path: '/hq',
|
||
|
component: Layout,
|
||
|
redirect: 'hq',
|
||
|
name: 'HQ',
|
||
|
meta: {
|
||
|
//requiresAuth: true,
|
||
|
title: '红旗-数据输出',
|
||
|
index: 0,
|
||
|
type: 'crm',
|
||
|
icon: '红旗',
|
||
|
keepAlive: false,
|
||
|
},
|
||
|
children: [
|
||
|
{
|
||
|
path: '/hq-standardUnConsign',
|
||
|
component: () => import('@/views/ux/hq-out-data/standardUnConsign'),
|
||
|
name: 'StandardUnConsign',//命名路由
|
||
|
meta: {
|
||
|
|
||
|
title: '标准看板发出未结算',
|
||
|
roles: ['SettleAccount.HQNotConsignReports'],
|
||
|
icon: '未结算'
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
path: '/hq-specialUnConsign',
|
||
|
component: () => import('@/views/ux/hq-out-data/specialUnConsign'),
|
||
|
name: 'SpecialUnConsign',
|
||
|
meta: {
|
||
|
|
||
|
title: '特殊看板发出未结算',
|
||
|
roles: ['SettleAccount.HQSPNotConsignReports'],
|
||
|
icon: '结算对比'
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
path: '/hq-stockFisDiffReport',
|
||
|
component: () => import('@/views/ux/hq-out-data/stockFisDiffReport'),
|
||
|
name: 'StockFisDiffReport',
|
||
|
meta: {
|
||
|
|
||
|
title: '看板发运对比',
|
||
|
roles: ['SettleAccount.HQNotConsignReports'],
|
||
|
icon: '发运对比'
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
path: '/hq-stockSettledDiffReport',
|
||
|
component: () => import('@/views/ux/hq-out-data/stockSettledDiffReport'),
|
||
|
name: 'StockFisDiffReport',
|
||
|
meta: {
|
||
|
|
||
|
title: '结算数据对比',
|
||
|
roles: ['SettleAccount.HQSPNotConsignReports'],
|
||
|
icon: '结算对比'
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
path: '/hq-stockUnsettledDiffReport',
|
||
|
component: () => import('@/views/ux/hq-out-data/stockUnsettledDiffReport'),
|
||
|
name: 'stockUnsettledDiffReport',//命名路由
|
||
|
meta: {
|
||
|
title: '看板未结数与期末库存差异',
|
||
|
roles: ['SettleAccount.HQSPNotConsignReports'],
|
||
|
icon: '调整'
|
||
|
}
|
||
|
}
|
||
|
,
|
||
|
{
|
||
|
path: '/bt-secondaryActuralDiffReportHQ',
|
||
|
component: () => import('@/views/ux/hq-out-data/secondaryActuralDiffReport'),
|
||
|
name: 'SecondaryActuralDiffReportHQ',
|
||
|
meta: {
|
||
|
title: '红旗二配相关',
|
||
|
roles: ['SettleAccount.HQSPNotConsignReports'],
|
||
|
icon: '二配'
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
|
||
|
export default HQOutDataRouter
|
||
|
|