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