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.
19 lines
482 B
19 lines
482 B
3 years ago
|
'use strict';
|
||
|
import { infor } from './containers';
|
||
|
export default [{
|
||
|
type: 'inner',
|
||
|
route: {
|
||
|
path: '/fillion',
|
||
|
key: 'fillion',
|
||
|
breadcrumb: '填报管理',
|
||
|
menuSelectKeys: ['fillion'],
|
||
|
menuOpenKeys: ['fillion'],
|
||
|
childRoutes: [ {
|
||
|
path: '/infor',
|
||
|
key: 'fillioninfor',
|
||
|
menuSelectKeys:['fillioninfor'],
|
||
|
component: infor,
|
||
|
breadcrumb: '填报信息',
|
||
|
}]
|
||
|
}
|
||
|
}];
|