【功能新增】IoT:设备管理界面增加导出设备功能

This commit is contained in:
YunaiV
2024-12-14 18:56:35 +08:00
parent 14fe6c559f
commit 8f1c660d1f
2 changed files with 41 additions and 10 deletions

View File

@ -87,6 +87,11 @@ export const DeviceApi = {
return await request.delete({ url: `/iot/device/delete?id=` + id })
},
// 导出设备
exportDeviceExcel: async (params: any) => {
return await request.download({ url: `/iot/device/export-excel`, params })
},
// 获取设备数量
getDeviceCount: async (productId: number) => {
return await request.get({ url: `/iot/device/count?productId=` + productId })