This commit is contained in:
xuziqiang
2024-06-06 16:56:35 +08:00
7 changed files with 1188 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
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: 'homeIndex' },
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;

View File

@@ -97,6 +97,7 @@ const organizationManage = {
},
],
},
],
};
export default organizationManage;