346149741
2024-06-22 0a2589ad83ffe64d021b009e33f8ff93b27d8536
api/qiye.js
@@ -21,4 +21,14 @@
// 发起投诉
export function orderComplaint(param) {
  return http.post('/enforce/order/orderComplaint', param, { custom: { loading: true }});
}
// 投诉列表
export function logList(data){
   return http.get('/enforce/complaint/log/list', {params: data}, { custom: { loading: true }});
}
// 投诉详情
export function complaint(id){
   return http.get('/enforce/complaint/'+id, { custom: { loading: true }});
}