修改用电查询

This commit is contained in:
2025-05-12 14:04:17 +08:00
parent 028d695deb
commit 4d665588ac
5 changed files with 79 additions and 201 deletions

View File

@@ -15,4 +15,9 @@ export const getLoginParkList = async function({ keyword }) {
// 获取建筑列表
export const getParkBuildingList = async function(pid) {
return await GET(`/vx/park/${pid}/building`);
}
// 获取指定园区指定月份核算的详细信息
export const getParkInfoByTime = async function(pid, period, method) {
return await GET(`/park/getReportParkIndex/${pid}?period=${period}&method=${method}`);
}