对接公区收益

This commit is contained in:
zhouyanli
2026-07-22 17:38:59 +08:00
parent e68579a5d3
commit 6cb10fee08
7 changed files with 146 additions and 99 deletions

View File

@@ -269,3 +269,13 @@ export const getInspectionList = (data) =>{
export const inspectionDetails = (data) =>{
return get(`/api/resident/inspection/${data.id}`,data)
}
// =======公区收益=========
// 列表
export const getRevenueList = (data) =>{
return get('/api/resident/revenueNotice/list',data)
}
// 详情
export const revenueDetails = (data) =>{
return get(`/api/resident/revenueNotice/${data.id}`)
}