车位区域管理完成

This commit is contained in:
Zy
2026-04-10 15:06:57 +08:00
parent 238aa9a400
commit 966a54fe3f
24 changed files with 2925 additions and 32 deletions

View File

@@ -72,3 +72,23 @@ export const UploadidCardApi = () => {
method: 'delete'
});
};
// ! 住户审核流程--------------------------------------------------------------------------
/**
* 获取住户审核流程列表
*/
export const getresidentReviewlistAPI = (id: string) => {
return request({
url: '/residentReview/list?residentId=' + id,
method: 'GET'
});
};
/**
* 获取单一住户审核流程列表
*/
export const getresidentReviewByIdAPI = (id: number) => {
return request({
url: `/residentReview/${id}`,
method: 'GET'
});
};