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