This commit is contained in:
dute7liang
2024-01-21 16:08:15 +08:00
parent ebdf797174
commit 2510dd0a95
2 changed files with 163 additions and 0 deletions

44
src/api/cai/payTotal.js Normal file
View File

@@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询支付统计列表
export function listPayTotal(query) {
return request({
url: '/cai/payTotal/list',
method: 'get',
params: query
})
}
// 查询支付统计详细
export function getPayTotal(id) {
return request({
url: '/cai/payTotal/' + id,
method: 'get'
})
}
// 新增支付统计
export function addPayTotal(data) {
return request({
url: '/cai/payTotal',
method: 'post',
data: data
})
}
// 修改支付统计
export function updatePayTotal(data) {
return request({
url: '/cai/payTotal',
method: 'put',
data: data
})
}
// 删除支付统计
export function delPayTotal(id) {
return request({
url: '/cai/payTotal/' + id,
method: 'delete'
})
}