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
803 B

import request from '@/utils/request'
// 查询代缴订单列表
export function listDealProxy(query) {
return request({
url: '/business/dealProxy/list',
method: 'get',
params: query
})
}
// 查询代缴订单详细
export function getDealProxy(id) {
return request({
url: '/business/dealProxy/' + id,
method: 'get'
})
}
// 新增代缴订单
export function addDealProxy(data) {
return request({
url: '/business/dealProxy',
method: 'post',
data: data
})
}
// 修改代缴订单
export function updateDealProxy(data) {
return request({
url: '/business/dealProxy',
method: 'put',
data: data
})
}
// 删除代缴订单
export function delDealProxy(id) {
return request({
url: '/business/dealProxy/' + id,
method: 'delete'
})
}