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.
20 lines
402 B
20 lines
402 B
import { Statistic, Bigscreen } from './containers';
|
|
|
|
export default [{
|
|
type: 'outer',
|
|
route: {
|
|
path: '/projectGroup/statistic',
|
|
key: 'projectGroup',
|
|
breadcrumb: '项目集',
|
|
component: Statistic,
|
|
}
|
|
}, {
|
|
type: 'outer',
|
|
route: {
|
|
path: '/projectGroup/bigscreen',
|
|
key: 'bigscreen',
|
|
breadcrumb: '数据大屏 ',
|
|
component: Bigscreen,
|
|
}
|
|
}
|
|
];
|