This commit is contained in:
2026-02-12 21:19:23 +08:00
parent 29ab53056a
commit 7fdb6e2ad3
12 changed files with 2320 additions and 313 deletions

View File

@ -29,4 +29,12 @@ export function getAllBatteryIdsBySites(data) {
url: `/ems/generalQuery/getAllBatteryIdsBySites/${data}`,
method: 'get',
})
}
}
// 综合查询-按站点获取配置设备列表
export function getGeneralQueryDeviceList(siteId) {
return request({
url: `/ems/siteConfig/getDeviceList?siteId=${siteId}`,
method: 'get',
})
}