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.
 
 
 
 
 
 

95 lines
2.3 KiB

/** jit路由 */
import Layout from '@/layout'
const newjitRouter = {
path: '/newjit-basedata',
component: Layout,
redirect: 'newjit-basedata',
name: 'Newjit',
//hidden: true,
meta: {
//requiresAuth: true,
title: 'FIS数据管理',
index: 0,
type: 'crm',
icon: '基础数据',
keepAlive: false,
},
children: [
// {
// path: '/excludePartCfgs',
// component: () => import('@/views/newJit/baseData/excludePartCfgs/index'),
// name: 'ExcludePartCfgs',//命名路由
// meta: {
// title: '排除零件配置',
// //roles: [],
// icon: '客户零件'
// }
// },
{
path: '/repeatM100',
component: () => import('@/views/newJit/baseData/repeatR100/index'),
name: 'RepeatM100',//命名路由
meta: {
title: '重复报文查询',
//roles: [],
icon: '期间'
}
},
{
path: '/billM100',
component: () => import('@/views/newJit/baseData/billM100/index'),
name: 'BillM100',//命名路由
meta: {
title: 'M100上线信息',
//roles: [],
icon: '工厂'
}
},
// {
// path: '/billM100Manager',
// component: () => import('@/views/newJit/baseData/billM100Manager/index'),
// name: 'BillM100Manager',//命名路由
// meta: {
// title: 'M100信息管理',
// //roles: [],
// icon: '输入'
// }
// },
{
path: '/assemblyCfg',
component: () => import('@/views/newJit/baseData/assemblyCfg/index'),
name: 'AssemblyCfg',//命名路由
meta: {
title: '总成模块管理',
//roles: [],
icon: '批量'
}
},
{
path: '/unknownAssembly',
component: () => import('@/views/newJit/baseData/unknownAssembly/index'),
name: 'UnknownAssembly',//命名路由
meta: {
title: '未知总成管理',
//roles: [],
icon: '未结算'
}
}
,
{
path: '/logRemind',
component: () => import('@/views/newJit/baseData/logRemind/index'),
name: 'LogRemind',//命名路由
meta: {
title: '系统内通知',
//roles: [],
icon: 'log',
num: 0
}
}
]
}
export default newjitRouter