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.

106 lines
3.1 KiB

const Base = () => import('/nerv-lib/saas/view/system/layout/content.vue');
const equipmentControl = {
path: '/equipmentControl',
name: 'EquipmentControl',
10 months ago
meta: { title: '设备群控', icon: 'shebeiqunkong', index: 4 },
redirect: { name: 'LightManage' },
children: [
{
path: 'lightManage',
name: 'LightManage',
10 months ago
meta: { title: '智能照明', hideChildren: true, icon: 'shebeiqunkong' },
component: Base,
redirect: { name: 'lightManageIndex' },
children: [
{
path: 'index',
name: 'lightManageIndex',
10 months ago
component: () => import('/@/view/equipmentControl/lightingManage/indexs.vue'),
meta: {
10 months ago
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: [],
},
},
],
},
{
path: 'electricDoor',
name: 'electricDoor',
meta: { title: '电动门系统', hideChildren: true, icon: 'shebeiqunkong' },
component: Base,
redirect: { name: 'electricDoorIndex' },
children: [
{
path: 'index',
name: 'electricDoorIndex',
component: () => import('/@/view/equipmentControl/electricDoor/index.vue'),
meta: {
title: '电动门系统',
keepAlive: false,
// backApi: [],
},
},
],
},
8 months ago
{
path: 'airConditioningSystem',
name: 'airConditioningSystem',
8 months ago
meta: { title: '新风系统', hideChildren: true, icon: 'shebeiqunkong' },
8 months ago
component: Base,
redirect: { name: 'airConditioningSystemIndex' },
children: [
{
path: 'index',
name: 'airConditioningSystemIndex',
component: () => import('/@/view/equipmentControl/airConditioningSystem/index.vue'),
meta: {
8 months ago
title: '新风系统',
8 months ago
keepAlive: false,
// backApi: [],
},
},
],
},
8 months ago
// {
// path: 'ventilationSystem',
// name: 'ventilationSystem',
// meta: { title: '通风系统', hideChildren: true, icon: 'shebeiqunkong' },
// component: Base,
// redirect: { name: 'ventilationSystemIndex' },
// children: [
// {
// path: 'index',
// name: 'ventilationSystemIndex',
// component: () => import('/@/view/equipmentControl/ventilationSystem/index.vue'),
8 months ago
// meta: {
// title: '通风系统',
// keepAlive: false,
// // backApi: [],
// },
// },
// ],
// },
],
};
export default equipmentControl;