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.
42 lines
1.3 KiB
42 lines
1.3 KiB
import { DataQuery, DataComparison, DataAssociation,Notebook } from './containers';
|
|
|
|
export default [{
|
|
type: 'inner',
|
|
route: {
|
|
path: '/data',
|
|
key: 'data',
|
|
breadcrumb: '数据',
|
|
// 不设置 component 则面包屑禁止跳转
|
|
childRoutes: [{
|
|
path: '/dataMonitoring',
|
|
key: 'dataMonitoring',
|
|
breadcrumb: '数据监控',
|
|
childRoutes: [{
|
|
path: '/dataQuery',
|
|
key: 'dataQuery',
|
|
component: DataQuery,
|
|
breadcrumb: '数据查询',
|
|
}]
|
|
}, {
|
|
path: '/dataAnalysis',
|
|
key: 'dataAnalysis',
|
|
breadcrumb: '数据分析',
|
|
childRoutes: [{
|
|
path: '/dataComparison',
|
|
key: 'dataComparison',
|
|
component: DataComparison,
|
|
breadcrumb: '数据对比',
|
|
},{
|
|
path: '/dataAssociation',
|
|
key: 'dataAssociation',
|
|
component: DataAssociation,
|
|
breadcrumb: '数据关联',
|
|
},{
|
|
path: '/notebook',
|
|
key: 'notebook',
|
|
component: Notebook,
|
|
breadcrumb: 'notebook',
|
|
}]
|
|
}]
|
|
}
|
|
}];
|