This commit is contained in:
zoujiandong
2025-07-25 16:50:23 +08:00
parent 4544b678d0
commit 05ef454ac8
21 changed files with 135 additions and 43 deletions
+7 -1
View File
@@ -184,7 +184,13 @@ const api = {
},
readRecord(data){
return request('/user/case/read',data,'post',false,'application/json');
}
},
updateExchange(id,data){
return request('/exchange/'+id, data, 'put',true,'application/json');
},
delExchange(id){
return request('/exchange/'+id, {}, 'delete',true);
},
}