工单列表查询电表接口修改

This commit is contained in:
2025-11-19 10:28:20 +08:00
parent 972a267c36
commit 6fee2d0435
4 changed files with 31 additions and 5 deletions

View File

@@ -83,4 +83,9 @@ export const uninstallMeter = async function(data) {
// 获取商户下的电表,后台
export const getCollectorList = async function(keyword) {
return await GET(`/collector/list?collectorAddress=${replaceSpecialIcon(keyword)}`);
}
// 微信工单列表查询所有电表
export const getWorkOrderAllMeter = async function({ keyword, park, page = 1, size = 20 }) {
return await GET(`/vx/getAllMeter?keyword=${replaceSpecialIcon(keyword)}&pid=${park}&page=${page}&size=${size}`,);
}