对接在线报修的新增报修和报修详情接口

This commit is contained in:
zhouyanli
2026-04-30 14:28:22 +08:00
parent d183cb00c0
commit 95ccb1e3bc
7 changed files with 328 additions and 289 deletions

View File

@@ -113,12 +113,16 @@ export const getQueryRepair = (data) =>{
export const getHouseList = (data) =>{
return get('/api/resident/my/house/list',data)
}
// 报修详情
export const getRepairDetail = (data) =>{
return get('/repairOrder/queryRepairDetail',data)
}
// 通用文件上传
export const uploadImage = () => {
return upload('');
}
// 上传单张图片(请根据后端实际地址修改)
// 上传单张图片
export const uploadFile = (filePath) => {
return upload(filePath, '/common/upload');
}