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.
18 lines
406 B
18 lines
406 B
'use strict';
|
|
import { DeviceManage,Network } from './containers';
|
|
|
|
export default [{
|
|
type: 'inner',
|
|
route: {
|
|
path: '/deviceManage',
|
|
key: 'deviceManage',
|
|
breadcrumb: '巡检管理',
|
|
childRoutes: [{
|
|
path: '/deviceCheck',
|
|
key: 'deviceCheck',
|
|
component: DeviceManage,
|
|
breadcrumb: '设备查看',
|
|
}
|
|
]
|
|
}
|
|
}];
|