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.
|
|
|
//大众-FIS结算-路由
|
|
|
|
import Layout from '@/layout'
|
|
|
|
|
|
|
|
const vwsOutOrderDataRouter = {
|
|
|
|
path: '/cpat-wms-order',
|
|
|
|
component: Layout,
|
|
|
|
redirect: 'pg',
|
|
|
|
name: '业务数据',
|
|
|
|
//hidden: true,
|
|
|
|
meta: {
|
|
|
|
//requiresAuth: true,
|
|
|
|
title: 'WMS相关统计查询',
|
|
|
|
index: 0,
|
|
|
|
type: 'crm',
|
|
|
|
icon: '单据导入',
|
|
|
|
roles: ['SettleAccount.Reports'],
|
|
|
|
keepAlive: false,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: '/WmsOutputSum',
|
|
|
|
component: () => import('@/views/ux/billManage/WmsOutputSumExport'),
|
|
|
|
name: 'WmsOutputSumExport',//命名路由
|
|
|
|
meta: {
|
|
|
|
title: 'WMS统计汇总报表',
|
|
|
|
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
|
|
|
|
icon: '零件'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: '/erpSumOutput',
|
|
|
|
component: () => import('@/views/ux/billManage/ErpSumOutput'),
|
|
|
|
name: 'ErpSumOutput',//命名路由
|
|
|
|
meta: {
|
|
|
|
title: '结算汇总出库接口',
|
|
|
|
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
|
|
|
|
icon: '零件'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: '/wmsOutputSumReport',
|
|
|
|
component: () => import('@/views/ux/billManage/WMSOutputSumReport'),
|
|
|
|
name: 'WMSOutputSumReport',//命名路由
|
|
|
|
meta: {
|
|
|
|
title: '结算出库SAP接口',
|
|
|
|
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
|
|
|
|
icon: '零件'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
path: '/wms-OutputDetailDiffReport',
|
|
|
|
component: () => import('@/views/ux/billManage/WMSOutputDetailDiffReport'),
|
|
|
|
name: 'WMSOutputDetailDiffReport',//命名路由
|
|
|
|
meta: {
|
|
|
|
title: '结算单出库接口',
|
|
|
|
roles: ['SettleAccount.Reports'],//控制页面角色(可以设置多个角色)
|
|
|
|
icon: '零件'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
export default vwsOutOrderDataRouter
|
|
|
|
|