暂存工作台修改

This commit is contained in:
2024-11-12 11:10:46 +08:00
parent b9d1ee34a7
commit c8649288ff
10 changed files with 342 additions and 23 deletions

View File

@@ -14,4 +14,9 @@ export const getMeterDetail = async function({ tenement, id }) {
// 获取某一商户的电表列表
export const getTenementMeterList = async function(tid) {
return await GET(`/wx/getMeterList/${tid}`);
}
// 获取某一园区下的电表列表
export const getParkMeterList = async function({park = "", keyword = ""}) {
return await GET(`/equipment/getOperateMeterList?page=1&park=${park}&keyword=${keyword}`);
}