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.
72 lines
2.4 KiB
72 lines
2.4 KiB
/** 大众-数据输出-路由 */
|
|
//import Layout from '@/layout/firstLayout'
|
|
import Layout from '@/layout'
|
|
|
|
const vwoutdataRouter = {
|
|
path: '/vwout',
|
|
component: Layout,
|
|
redirect: 'vwout',
|
|
name: 'vw-out',
|
|
meta: {
|
|
title: '大众-数据输出',
|
|
index: 0,
|
|
icon: '大众'
|
|
},
|
|
children: [
|
|
{
|
|
path: '/sendUnsettledDiffReport',
|
|
component: () => import('@/views/ux/vw/dataOut/sendUnsettledDiffReport'),
|
|
name: 'sendUnsettledDiffReport',//命名路由
|
|
meta: { title: 'FIS发出未结算', roles: ['SettleAccount.SendUnsettledDiffReports'], icon: '未结算' }
|
|
},
|
|
{
|
|
path: '/stockFisDiffReport',
|
|
component: () => import('@/views/ux/vw/dataOut/stockFisDiffReport'),
|
|
name: 'stockFisDiffReport',//命名路由
|
|
meta: { title: 'FIS发运数据对比', roles: ['SettleAccount.StockFisDiffReports'], icon: '发运对比' }
|
|
},
|
|
{
|
|
path: '/stockUnsettledDiffReport',
|
|
component: () => import('@/views/ux/vw/dataOut/stockUnsettledDiffReport'),
|
|
name: 'stockUnsettledDiffReport',//命名路由
|
|
meta: { title: 'FIS未结数量与期末对比', roles: ['SettleAccount.StockUnsettledDiffReports'], icon: '库存对比' }
|
|
},
|
|
{
|
|
path: '/stockSettledDiffReport',
|
|
component: () => import('@/views/ux/vw/dataOut/stockSettledDiffReport'),
|
|
name: 'stockSettledDiffReport',//命名路由
|
|
meta: { title: 'R3结算数据对比', roles: ['SettleAccount.StockSettledDiffReports'], icon: '结算对比' }
|
|
},
|
|
{
|
|
path: '/secondaryActuralAdjustmentReport',
|
|
component: () => import('@/views/ux/vw/dataOut/secondaryActuralAdjustmentReport'),
|
|
hidden: false,
|
|
name: 'secondaryActuralAdjustmentReport',
|
|
meta: {
|
|
title: '实际二配调整后',
|
|
roles: ['SettleAccount.SecondaryReports'],
|
|
type: 'crm', icon: '调整'
|
|
}
|
|
},
|
|
{
|
|
path: '/secondaryActuralDiffReport',
|
|
component: () => import('@/views/ux/vw/dataOut/secondaryActuralDiffReport'),
|
|
hidden: false,
|
|
name: 'secondaryActuralDiffReport',
|
|
meta: {
|
|
title: '二配对比',
|
|
roles: ['SettleAccount.SecondaryReports'],
|
|
type: 'crm',icon:'二配对比'
|
|
}
|
|
},
|
|
// {
|
|
// path: 'r32',
|
|
// component: () => import('@/views/ux/vw/dataOut/fis'),
|
|
// name: 'R3',//命名路由
|
|
// meta: { title: '二配对比输出表', icon: 'gongyingshang' }
|
|
// }
|
|
]
|
|
}
|
|
|
|
export default vwoutdataRouter
|
|
|
|
|