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.
24 lines
593 B
24 lines
593 B
'use strict';
|
|
import { Information,QrCode } from './containers';
|
|
|
|
export default [{
|
|
type: 'inner',
|
|
route: {
|
|
path: '/projectRegime',
|
|
key: 'projectRegime',
|
|
breadcrumb: '结构物管理',
|
|
// 不设置 component 则面包屑禁止跳转
|
|
childRoutes: [{
|
|
path: '/information',
|
|
key: 'information',
|
|
component: Information,
|
|
breadcrumb: '结构物基础信息管理',
|
|
}, {
|
|
path: '/qrCode',
|
|
key: 'qrCode',
|
|
component: QrCode,
|
|
breadcrumb: '结构物二维码管理',
|
|
},
|
|
]
|
|
}
|
|
}];
|