You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
816 B
44 lines
816 B
import request from '@/utils/request'
|
|
|
|
// 查询提升建议列表
|
|
export function listSuggestionReply(query) {
|
|
return request({
|
|
url: '/system/suggestionReply/list',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 查询提升建议详细
|
|
export function getSuggestionReply(id) {
|
|
return request({
|
|
url: '/system/suggestionReply/' + id,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 新增提升建议
|
|
export function addSuggestionReply(data) {
|
|
return request({
|
|
url: '/system/suggestionReply',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 修改提升建议
|
|
export function updateSuggestionReply(data) {
|
|
return request({
|
|
url: '/system/suggestionReply',
|
|
method: 'put',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 删除提升建议
|
|
export function delSuggestionReply(id) {
|
|
return request({
|
|
url: '/system/suggestionReply/' + id,
|
|
method: 'delete'
|
|
})
|
|
} |