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.
32 lines
1023 B
32 lines
1023 B
'use strict';
|
|
import { Adapter, DataSourceManagement, AcquisitionTask, AcquisitionLog } from './containers';
|
|
export default [{
|
|
type: 'inner',
|
|
route: {
|
|
path: '/metadataAcquisition',
|
|
key: 'metadataAcquisition',
|
|
breadcrumb: '元数据采集',
|
|
// 不设置 component 则面包屑禁止跳转
|
|
childRoutes: [{
|
|
path: '/adapter',
|
|
key: 'adapter',
|
|
component: Adapter,
|
|
breadcrumb: '适配器管理'
|
|
}, {
|
|
path: '/dataSourceManagement',
|
|
key: 'dataSourceManagement',
|
|
component: DataSourceManagement,
|
|
breadcrumb: '数据源管理'
|
|
}, {
|
|
path: '/acquisitionTask',
|
|
key: 'acquisitionTask',
|
|
component: AcquisitionTask,
|
|
breadcrumb: '采集任务配置'
|
|
}, {
|
|
path: '/acquisitionLog',
|
|
key: 'acquisitionLog',
|
|
component: AcquisitionLog,
|
|
breadcrumb: '采集日志'
|
|
}]
|
|
}
|
|
}];
|