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.

30 lines
859 B

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: true,
// backApi: [],
},
},
],
},
],
};
export default equipmentControl;