【新增】 IOT 设备管理,设备详情

This commit is contained in:
安浩浩
2024-09-22 15:42:20 +08:00
parent 63a0e5dc3d
commit 93a0789e34
6 changed files with 387 additions and 18 deletions

View File

@@ -622,6 +622,17 @@ const remainingRouter: AppRouteRecordRaw[] = [
activeMenu: '/iot/product'
},
component: () => import('@/views/iot/product/detail/index.vue')
},
{
path: 'device/detail/:id',
name: 'IoTDeviceDetail',
meta: {
title: '设备详情',
noCache: true,
hidden: true,
activeMenu: '/iot/device'
},
component: () => import('@/views/iot/device/detail/index.vue')
}
]
}