1
0
forked from dyf/APP

优化设备控制,提交后,实时获取设备返回状态信息

This commit is contained in:
fengerli
2025-08-14 13:46:57 +08:00
parent d8edb9f31e
commit e56bbfe674
15 changed files with 1104 additions and 383 deletions

View File

@ -61,4 +61,13 @@ export function mapReverseGeocoding(data) {
method: 'post',
data: data
})
}
}
// 或者设备状态
export function deviceRealTimeStatus(params) {
return request({
url: `/app/device/realTimeStatus`,
method: 'get',
data:params
})
}