/** 派格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: 'JIT数据管理', index: 0, type: 'crm', icon: '业务', keepAlive: false, }, children: [ { path: '/pg-planControl', component: () => import('@/views/pg-fis/basedate/planControl/index.vue'), name: 'pg-planControl',//命名路由 meta: { title: 'E001计划管理', //roles: ['SettleAccount.Reports'], icon: '客户零件' } }, { path: '/pg-planControl_V2', component: () => import('@/views/pg-fis/basedate/planControl_V2/index.vue'), name: 'pg-planControl_V2', //命名路由 meta: { title: 'D077-E007计划管理', //roles: ['SettleAccount.Reports'], icon: '客户零件' } }, // { // path: '/customerPartCfg', // component: () => import('@/views/pg-fis/basedate/customerPartCfg'), // name: 'customerPartCfg',//命名路由 // meta: { // title: '客户零件管理', // //roles: ['SettleAccount.Reports'], // icon: '发货' // } // }, { path: '/SAPItemConfig', component: () => import('@/views/pg-fis/basedate/SAPItemConfig'), 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-partSwitch', // component: () => import('@/views/pg-fis/basedate/partSwitch'), // name: 'pg-partSwitch',//命名路由 // meta: { // title: '零件切换管理', // //roles: ['SettleAccount.Reports'], // icon: '发货' // } // }, { path: '/pg-unknownAssembly', component: () => import('@/views/pg-fis/basedate/unknownAssembly'), name: 'pg-unknownAssembly',//命名路由 meta: { title: '未知总成模块管理', //roles: ['SettleAccount.Reports'], icon: '发货' } }, { path: '/pg-workLine', component: () => import('@/views/pg-fis/basedate/productLine'), 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-m100normal-print', // component: () => import('@/views/pg-fis/basedate/m100Online/normalPritIndex.vue'), // name: 'pg-M100Online',//命名路由 // meta: { // title: '日常打印M100信息', // ////roles: ['SettleAccount.Reports'], // icon: '客户零件' // } // }, // { // path: '/select', // component: () => import('@/views/pg-fis/basedate/select'), // name: 'select',//命名路由 // meta: { // title: 'M100查询', // //roles: ['SettleAccount.Reports'], // icon: '客户零件' // } // }, // { // path: '/pg-R100Online', // component: () => import('@/views/pg-fis/basedate/r100Online'), // name: 'pg-R100Online',//命名路由 // meta: { // title: 'R100上线信息', // //roles: ['SettleAccount.Reports'], // icon: '客户零件' // } // }, // { // path: '/pg-weldingAssembly', // component: () => import('@/views/pg-fis/basedate/weldingAssembly'), // name: 'pg-weldingAssembly',//命名路由 // meta: { // title: '焊装总装对比', // //roles: ['SettleAccount.Reports'], // icon: '客户零件' // } // }, { path: '/pg-logRemind', component: () => import('@/views/pg-fis/basedate/logRemind'), name: 'pg-logRemind',//命名路由 meta: { title: '系统内通知', //roles: ['SettleAccount.Reports'], icon: '客户零件' } }, { path: '/pg-repeatR100', component: () => import('@/views/pg-fis/basedate/repeatR100'), name: 'pg-repeatR100',//命名路由 meta: { title: '重复报文', //roles: ['SettleAccount.Reports'], icon: '客户零件' } }, ] } export default pgfis