LFPay admin web
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
793 B

import request from '@/utils/request'
// 查询收款列表
export function listDealReceive(query) {
return request({
url: '/business/dealReceive/list',
method: 'get',
params: query
})
}
// 查询收款详细
export function getDealReceive(id) {
return request({
url: '/business/dealReceive/' + id,
method: 'get'
})
}
// 新增收款
export function addDealReceive(data) {
return request({
url: '/business/dealReceive',
method: 'post',
data: data
})
}
// 修改收款
export function updateDealReceive(data) {
return request({
url: '/business/dealReceive',
method: 'put',
data: data
})
}
// 删除收款
export function delDealReceive(id) {
return request({
url: '/business/dealReceive/' + id,
method: 'delete'
})
}