2 changed files with 1576 additions and 0 deletions
@ -0,0 +1,31 @@ |
|||||||
|
import request from "@/api/request"; |
||||||
|
|
||||||
|
export function getComplaintCollectionPage(body) { |
||||||
|
return request.post({ |
||||||
|
url: `/data/complaintCollection/getComplaintCollectionPage`, |
||||||
|
body |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
export function addComplaintCollection(body) { |
||||||
|
return request.post({ |
||||||
|
url: `/data/complaintCollection/addComplaintCollection`, |
||||||
|
body |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
export function delComplaintCollection(body) { |
||||||
|
return request.post({ |
||||||
|
url: `/data/complaintCollection/delComplaintCollection`, |
||||||
|
body |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
export function updateComplaintCollection(body) { |
||||||
|
return request.post({ |
||||||
|
url: `/data/complaintCollection/updateComplaintCollection`, |
||||||
|
body |
||||||
|
}); |
||||||
|
} |
||||||
Loading…
Reference in new issue