| | |
| | | import request from '@/utils/request.js' |
| | | |
| | | // 工单列表 |
| | | export const getList = (params) => { |
| | | return request.post(`/api/huacheng-sangeshenbian/applet/complaint/list`, params) |
| | | // 处理记录 |
| | | export const getProcessingList = (data) => { |
| | | return request.post(`/api/huacheng-sangeshenbian/applet/supervise/processing-record-page`, data) |
| | | } |
| | | // 问题驳回池 |
| | | export const getRejectList = (data) => { |
| | | return request.post(`/api/huacheng-sangeshenbian/applet/supervise/reject-record-page`, data) |
| | | } |
| | | |
| | | // 工单详情 |
| | | // 详情 |
| | | export const getComplaintDetail = (params) => { |
| | | return request.get('/api/huacheng-sangeshenbian/applet/complaint/detail', params) |
| | | } |
| | | |
| | | // 编辑办理进度 |
| | | export const editProgress = (params) => { |
| | | return request.put('/api/huacheng-sangeshenbian/applet/complaint-progress/edit', params) |
| | | } |
| | | |
| | | // 删除办理进度 |
| | | export const delProgress = (id) => { |
| | | return request.delete(`/api/huacheng-sangeshenbian/applet/complaint-progress/${id}`) |
| | | } |