feat: 完成车辆收费、水电抄表

This commit is contained in:
fyy
2025-07-22 14:21:19 +08:00
parent 5c78f808b0
commit 49cbf6ffe5
3 changed files with 92 additions and 24 deletions

View File

@@ -62,5 +62,5 @@ export function costMeterWaterRemove(id: ID | IDS) {
// 根据业主id查询
export function ultimoWater(id: ID | IDS) {
return requestClient.deleteWithMsg<void>(`/property/ultimoWater/${id}`);
return requestClient.get<any>(`/property/meterWater/ultimoWater/${id}`);
}

View File

@@ -51,6 +51,8 @@ export interface CostMeterWaterVO {
* 搜索值
*/
searchValue: string;
costType:string;
userId:string;
}