Commit bf6aa666 by YG8999

人工退款记录

parent d124bd38
import request from '@/utils/request'
// 查询订单人工退款记录列表
export function listArtificial(query) {
return request({
url: '/system/artificial/list',
method: 'get',
params: query
})
}
// 查询订单人工退款记录详细
export function getArtificial(id) {
return request({
url: '/system/artificial/' + id,
method: 'get'
})
}
// 新增订单人工退款记录
export function addArtificial(data) {
return request({
url: '/system/artificial',
method: 'post',
data: data
})
}
// 修改订单人工退款记录
export function updateArtificial(data) {
return request({
url: '/system/artificial',
method: 'put',
data: data
})
}
// 删除订单人工退款记录
export function delArtificial(id) {
return request({
url: '/system/artificial/' + id,
method: 'delete'
})
}
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