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.
64 lines
1.7 KiB
64 lines
1.7 KiB
//大众-FIS结算-路由
|
|
import Layout from '@/layout'
|
|
|
|
const vwOutOrderDataRouter = {
|
|
path: '/cpat-order',
|
|
component: Layout,
|
|
redirect: 'pg',
|
|
name: '业务数据',
|
|
//hidden: true,
|
|
meta: {
|
|
//requiresAuth: true,
|
|
title: '大众出库单管理',
|
|
index: 0,
|
|
type: 'crm',
|
|
icon: '单据导入',
|
|
keepAlive: false,
|
|
},
|
|
children: [
|
|
{
|
|
path: 'vw-out-order',
|
|
component: () => import('@/views/ux/billManage/vwOutOrder/index'),
|
|
name: 'SettleAccount',//命名路由
|
|
meta: {
|
|
title: '大众准时化出库单',
|
|
roles: ['SettleAccount.WMSJIT'],//控制页面角色(可以设置多个角色)
|
|
icon: '结算'
|
|
}
|
|
},
|
|
{
|
|
path: 'kanban-out-order',
|
|
component: () => import('@/views/ux/billManage/kanbanOutOrder/index'),
|
|
name: 'SettleAccount',//命名路由
|
|
meta: {
|
|
title: '大众看板出库单',
|
|
roles: ['SettleAccount.WMSJIT'],//控制页面角色(可以设置多个角色)
|
|
icon: '结算'
|
|
}
|
|
},
|
|
{
|
|
path: 'kanban-without-order',
|
|
component: () => import('@/views/ux/billManage/kanbanWithOutOrder/index'),
|
|
name: 'SettleAccount',//命名路由
|
|
meta: {
|
|
title: '大众无条码看板出库单',
|
|
roles: ['SettleAccount.WMSJIT'],//控制页面角色(可以设置多个角色)
|
|
icon: '结算'
|
|
}
|
|
},
|
|
{
|
|
path: 'sparepart-out-order',
|
|
component: () => import('@/views/ux/billManage/sparepartOutOrder/index'),
|
|
name: 'Invoices',//命名路由
|
|
meta: {
|
|
title: '大众备件出库单',
|
|
roles: ['SettleAccount.WMSJIT'],
|
|
icon: '对比'
|
|
}
|
|
},
|
|
|
|
]
|
|
}
|
|
|
|
export default vwOutOrderDataRouter
|
|
|
|
|