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.
|
|
|
const Base = () => import('/nerv-lib/saas/view/system/layout/content.vue');
|
|
|
|
const equipmentControl = {
|
|
|
|
path: '/equipmentControl',
|
|
|
|
name: 'EquipmentControl',
|
|
|
|
meta: { title: '设备群控', icon: 'dicizhishou', index: 4 },
|
|
|
|
redirect: { name: 'LightManage' },
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: 'lightManage',
|
|
|
|
name: 'LightManage',
|
|
|
|
meta: { title: '智能照明', hideChildren: true, icon: 'dicizhishou' },
|
|
|
|
component: Base,
|
|
|
|
redirect: { name: 'lightManageIndex' },
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: 'index',
|
|
|
|
name: 'lightManageIndex',
|
|
|
|
component: () => import('/@/view/equipmentControl/lightingManage/indexs.vue'),
|
|
|
|
meta: {
|
|
|
|
title: '智能照明',
|
|
|
|
keepAlive: true,
|
|
|
|
// backApi: [],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
export default equipmentControl;
|