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
823 B
44 lines
823 B
import request from '@/utils/request'
|
|
|
|
// 查询付款订单列表
|
|
export function listDealPayment(query) {
|
|
return request({
|
|
url: '/business/dealPayment/list',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 查询付款订单详细
|
|
export function getDealPayment(id) {
|
|
return request({
|
|
url: '/business/dealPayment/' + id,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 新增付款订单
|
|
export function addDealPayment(data) {
|
|
return request({
|
|
url: '/business/dealPayment',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 修改付款订单
|
|
export function updateDealPayment(data) {
|
|
return request({
|
|
url: '/business/dealPayment',
|
|
method: 'put',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 删除付款订单
|
|
export function delDealPayment(id) {
|
|
return request({
|
|
url: '/business/dealPayment/' + id,
|
|
method: 'delete'
|
|
})
|
|
}
|
|
|