5.1日 暂定 水电表管理

This commit is contained in:
Zy
2026-05-01 18:36:37 +08:00
parent 7b89144dd4
commit a8bb4e66ad
103 changed files with 1071 additions and 533 deletions

View File

@@ -7,7 +7,7 @@ import { AxiosPromise } from 'axios';
* @returns {*}
*/
export const workSpaceTotalListApi = (
villageId: number
villageId: string
): Promise<{
totalResident: number;
totalHouse: number;
@@ -17,6 +17,8 @@ export const workSpaceTotalListApi = (
return request({
url: '/workSpace/totalList',
method: 'get',
params: villageId
params: {
villageId: villageId
}
});
};