Commit ce8115da authored by 高宇's avatar 高宇

会员权益

parent dee08c22
import request from '@/utils/request'
// 分页查询投诉建议列表
export function getComplaintList(params) {
return request({
url: '/system/ComplaintSuggestion/selectComplaintInfoByPagination',
method: 'get',
params
})
}
// 根据id查询详情
export function getComplaintDetailById(id) {
return request({
url: '/system/ComplaintSuggestion/detail/' + id,
method: 'get'
})
}
// 处理投诉建议
export function handleComplaint(data) {
return request({
url: '/system/ComplaintSuggestion/update',
method: 'put',
data,
headers: {
'Content-Type': 'application/json;charset=UTF-8'
}
})
}
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment