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.
53 lines
1.1 KiB
53 lines
1.1 KiB
import request from '@/utils/request'
|
|
|
|
// 查询代付子订单列表
|
|
export function listCarddealerWithdrawOrderSub(query) {
|
|
return request({
|
|
url: '/order/carddealerWithdrawOrderSub/list',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 查询代付子订单详细
|
|
export function getCarddealerWithdrawOrderSub(id) {
|
|
return request({
|
|
url: '/order/carddealerWithdrawOrderSub/' + id,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 新增代付子订单
|
|
export function addCarddealerWithdrawOrderSub(data) {
|
|
return request({
|
|
url: '/order/carddealerWithdrawOrderSub',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 修改代付子订单
|
|
export function updateCarddealerWithdrawOrderSub(data) {
|
|
return request({
|
|
url: '/order/carddealerWithdrawOrderSub',
|
|
method: 'put',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 删除代付子订单
|
|
export function delCarddealerWithdrawOrderSub(id) {
|
|
return request({
|
|
url: '/order/carddealerWithdrawOrderSub/' + id,
|
|
method: 'delete'
|
|
})
|
|
}
|
|
|
|
// 导出代付子订单
|
|
export function exportCarddealerWithdrawOrderSub(query) {
|
|
return request({
|
|
url: '/order/carddealerWithdrawOrderSub/export',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|