房屋详情待完善

This commit is contained in:
Zy
2026-05-14 17:57:09 +08:00
parent 0d3bb25e86
commit 9645412534
16 changed files with 562 additions and 185 deletions

View File

@@ -65,10 +65,11 @@ export const delParking = (id: string | number | Array<string | number>) => {
* 改变车位审核装填
* @param id
*/
export const getParkingReview = (id: string) => {
export const getParkingReview = (data: { id: string; propertyReviewFeedback: string; propertyStatus: number }) => {
return request({
url: '/parkingReview/checkStatus',
method: 'POST'
method: 'POST',
data
});
};
/**
@@ -84,3 +85,15 @@ export const getParkingReviewInfo = (id: string) => {
}
});
};
/**
* 查询小区内车位列表
* @param { string } villageid
* @returns {*}
*/
export const GetVillageListParking = (villageid?: string): AxiosPromise<ParkingVO[]> => {
return request({
url: `/parking/getList/${villageid}`,
method: 'GET'
});
};