【功能新增】IOT: 添加插件管理功能,包括插件列表、详情、状态更新及文件上传功能

This commit is contained in:
安浩浩
2024-12-30 12:03:30 +08:00
parent 5d2adcac19
commit e6a5bb0293
7 changed files with 238 additions and 125 deletions

View File

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