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.
29 lines
935 B
29 lines
935 B
import { ReportManagement, CyclePlan, TemporaryResponse, EmPush, AppPush, MaintenanceModel, ServiceRecord, MaintenanceRecords,FirmwareLibrary,DeviceManagement } from './containers';
|
|
|
|
export default [{
|
|
type: 'inner',
|
|
route: {
|
|
path: '/device',
|
|
key: 'device',
|
|
breadcrumb: '设备',
|
|
// 不设置 component 则面包屑禁止跳转
|
|
childRoutes: [
|
|
{
|
|
path: '/firmwareUpgrade',
|
|
key: 'firmwareUpgrade',
|
|
breadcrumb: '固件库',
|
|
childRoutes: [{
|
|
path: '/FirmwareLibrary',
|
|
key: 'firmwareLibrary',
|
|
component: FirmwareLibrary,
|
|
breadcrumb: '固件库',
|
|
},{
|
|
path: '/DeviceManagement',
|
|
key: 'deviceManagement',
|
|
component: DeviceManagement,
|
|
breadcrumb: '设备管理',
|
|
}]
|
|
}
|
|
]
|
|
}
|
|
}];
|