44673626
3 years ago
1 changed files with 64 additions and 0 deletions
@ -0,0 +1,64 @@ |
|||
//大众-FIS结算-路由
|
|||
import Layout from '@/layout' |
|||
|
|||
const hqOutOrderDataRouter = { |
|||
path: '/cpat-order', |
|||
component: Layout, |
|||
redirect: 'pg', |
|||
name: '业务数据', |
|||
//hidden: true,
|
|||
meta: { |
|||
//requiresAuth: true,
|
|||
title: '红旗出库单管理', |
|||
index: 0, |
|||
type: 'crm', |
|||
icon: '单据导入', |
|||
keepAlive: false, |
|||
}, |
|||
children: [ |
|||
{ |
|||
path: 'hq-h-outorder', |
|||
component: () => import('@/views/ux/billManage/vwOutOrder/index'), |
|||
name: 'SettleAccount',//命名路由
|
|||
meta: { |
|||
title: '大众准时化出库单', |
|||
roles: ['SettleAccount.SettleAccounts'],//控制页面角色(可以设置多个角色)
|
|||
icon: '结算' |
|||
} |
|||
}, |
|||
{ |
|||
path: 'hq-m-outorder', |
|||
component: () => import('@/views/ux/billManage/kanbanOutOrder/index'), |
|||
name: 'SettleAccount',//命名路由
|
|||
meta: { |
|||
title: '大众看板出库单', |
|||
roles: ['SettleAccount.SettleAccounts'],//控制页面角色(可以设置多个角色)
|
|||
icon: '结算' |
|||
} |
|||
}, |
|||
{ |
|||
path: 'hq-f-withoutorder', |
|||
component: () => import('@/views/ux/billManage/kanbanWithOutOrder/index'), |
|||
name: 'SettleAccount',//命名路由
|
|||
meta: { |
|||
title: '大众无条码看板出库单', |
|||
roles: ['SettleAccount.SettleAccounts'],//控制页面角色(可以设置多个角色)
|
|||
icon: '结算' |
|||
} |
|||
}, |
|||
{ |
|||
path: 'hq-car-outorder', |
|||
component: () => import('@/views/ux/billManage/sparepartOutOrder/index'), |
|||
name: 'Invoices',//命名路由
|
|||
meta: { |
|||
title: '大众备件出库单', |
|||
roles: ['SettleAccount.Invoices'], |
|||
icon: '对比' |
|||
} |
|||
}, |
|||
|
|||
] |
|||
} |
|||
|
|||
export default hqOutOrderDataRouter |
|||
|
Loading…
Reference in new issue