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.
84 lines
2.4 KiB
84 lines
2.4 KiB
4 years ago
|
/** 派格fis路由 */
|
||
|
//import Layout from '@/layout/firstLayout'
|
||
|
import Layout from '@/layout'
|
||
|
|
||
|
const pgfis = {
|
||
|
path: '/pg-fis',
|
||
|
component: Layout,
|
||
|
redirect: 'fis',
|
||
|
name: 'pgfis',
|
||
|
meta: {
|
||
|
//requiresAuth: true,
|
||
|
title: '派格fis',
|
||
|
index: 0,
|
||
|
type: 'crm',
|
||
|
icon: '业务',
|
||
|
keepAlive: false,
|
||
|
},
|
||
|
children: [
|
||
|
{
|
||
|
path: '/customerPartCfg',
|
||
|
component: () => import('@/views/pg-fis/basedate/customerPartCfg'),
|
||
|
name: 'customerPartCfg',//命名路由
|
||
|
meta: {
|
||
|
title: '客户零件管理',
|
||
|
roles: ['SettleAccount.Reports'],
|
||
|
icon: '发货'
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
path: '/pg-assemblyCfg',
|
||
|
component: () => import('@/views/pg-fis/basedate/assemblyCfg'),
|
||
|
name: 'pg-assemblyCfg',//命名路由
|
||
|
meta: {
|
||
|
title: '总成模块管理',
|
||
|
roles: ['SettleAccount.Reports'],
|
||
|
icon: '发货'
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
path: '/pg-workLine',
|
||
|
component: () => import('@/views/pg-fis/basedate/workLine'),
|
||
|
name: 'pg-workLine',
|
||
|
meta: {
|
||
|
title: '生产线权限',
|
||
|
roles: ['SettleAccount.Reports'],
|
||
|
icon: '供货'
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
path: '/pg-M100BIll',
|
||
|
component: () => import('@/views/pg-fis/basedate/m100BIll'),
|
||
|
name: 'pg-M100BIll',//命名路由
|
||
|
meta: {
|
||
|
title: 'M100单据信息维护',
|
||
|
roles: ['SettleAccount.Reports'],
|
||
|
icon: '客户零件'
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
path: '/pg-M100Online',
|
||
|
component: () => import('@/views/pg-fis/basedate/m100Online'),
|
||
|
name: 'pg-M100Online',//命名路由
|
||
|
meta: {
|
||
|
title: 'M100上线信息',
|
||
|
roles: ['SettleAccount.Reports'],
|
||
|
icon: '客户零件'
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
path: '/pg-R100Online',
|
||
|
component: () => import('@/views/pg-fis/basedate/r100Online'),
|
||
|
name: 'pg-M100Online',//命名路由
|
||
|
meta: {
|
||
|
title: 'R100上线信息',
|
||
|
roles: ['SettleAccount.Reports'],
|
||
|
icon: '客户零件'
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
|
||
|
export default pgfis
|
||
|
|