| | |
| | | // 发起投诉 |
| | | 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 }}); |
| | | } |
| | | // /enforce/complaint/log/ |
| | | export function complaintDetails(id){ |
| | | return http.get('/enforce/complaint/log/'+id, { custom: { loading: true }}); |
| | | } |
| | | |
| | | // /enforce/order/orderComplaintNodeList 投诉单节点 |
| | | |
| | | export function orderComplaintNodeList(data){ |
| | | return http.get('/enforce/order/orderComplaintNodeList',{params: data}, { custom: { loading: true }}); |
| | | } |
| | | // 无orderid |
| | | export function orderNodeList(data){ |
| | | return http.get('/enforce/complaint/log/orderNodeList',{params: data}, { custom: { loading: true }}); |
| | | } |
| | | |
| | | // /system/company/list |
| | | // export function getCompanyList(data){ |
| | | // return http.get('/system/company/list',{params: data}, { custom: { loading: true }}); |
| | | // } |