站点首页-当日功率曲线

This commit is contained in:
白菜
2025-09-17 11:15:54 +08:00
parent 7f560cd140
commit 902e9a0a03
2 changed files with 31 additions and 28 deletions

View File

@ -291,3 +291,11 @@ export function curveList({siteId,strategyId}) {
method: 'get',
})
}
//单站监控 首页 当日功率曲线
export function getPointData({siteId,startDate,endDate}) {
return request({
url: `/ems/siteMonitor/getPointData?siteId=${siteId}&startDate=${startDate}&endDate=${endDate}`,
method: 'get',
})
}