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.
79 lines
2.2 KiB
79 lines
2.2 KiB
import Layout from '@/layout'
|
|
import { initFromApiColumnsLable } from '@/utils/index'
|
|
const interfaceBoardRouter = {
|
|
path: '/interfaceBoard',
|
|
alwaysShow:true,
|
|
component: Layout,
|
|
redirect: 'noRedirect',
|
|
meta: {
|
|
title: '接口看板管理',
|
|
icon: '报表查看',
|
|
roles:'skip'
|
|
},
|
|
children: [{
|
|
path: 'AsnMstr',
|
|
name: 'AsnMstr',
|
|
component: () => import('@/views/interfaceBoard/AsnMstr'),
|
|
meta: {
|
|
title: initFromApiColumnsLable('AsnMstr'),
|
|
icon: '用户',
|
|
roles: 'skip'
|
|
}
|
|
},{
|
|
path: 'IncomingData',
|
|
name: 'IncomingData',
|
|
component: () => import('@/views/interfaceBoard/IncomingData'),
|
|
meta: {
|
|
title: initFromApiColumnsLable('IncomingData'),
|
|
icon: '用户',
|
|
roles: 'skip'
|
|
}
|
|
},{
|
|
path: 'IncomingDataHistory',
|
|
name: 'IncomingDataHistory',
|
|
component: () => import('@/views/interfaceBoard/IncomingDataHistory'),
|
|
meta: {
|
|
title: initFromApiColumnsLable('IncomingDataHistory'),
|
|
icon: '用户',
|
|
roles: 'skip'
|
|
}
|
|
},{
|
|
path: 'OutgoingData',
|
|
name: 'OutgoingData',
|
|
component: () => import('@/views/interfaceBoard/OutgoingData'),
|
|
meta: {
|
|
title: initFromApiColumnsLable('OutgoingData'),
|
|
icon: '用户',
|
|
roles: 'skip'
|
|
}
|
|
},{
|
|
path: 'OutgoingDataHistory',
|
|
name: 'OutgoingDataHistory',
|
|
component: () => import('@/views/interfaceBoard/OutgoingDataHistory'),
|
|
meta: {
|
|
title: initFromApiColumnsLable('OutgoingDataHistory'),
|
|
icon: '用户',
|
|
roles: 'skip'
|
|
}
|
|
},{
|
|
path: 'MessageReceive',
|
|
name: 'MessageReceive',
|
|
component: () => import('@/views/interfaceBoard/MessageReceive'),
|
|
meta: {
|
|
title: initFromApiColumnsLable('MessageReceive'),
|
|
icon: '用户',
|
|
roles: 'skip'
|
|
}
|
|
},{
|
|
path: 'MesProductL7PartsNote',
|
|
name: 'MesProductL7PartsNote',
|
|
component: () => import('@/views/interfaceBoard/MesProductL7PartsNote'),
|
|
meta: {
|
|
title: initFromApiColumnsLable('MesProductL7PartsNote'),
|
|
icon: '用户',
|
|
roles: 'skip'
|
|
}
|
|
},
|
|
]
|
|
}
|
|
export default interfaceBoardRouter
|
|
|