暂存工作台修改

This commit is contained in:
2024-11-12 11:10:46 +08:00
parent b9d1ee34a7
commit c8649288ff
10 changed files with 342 additions and 23 deletions

View File

@@ -25,4 +25,9 @@ export const returnFee = async function(data) {
// 创建对公
export const createPublicTopUp = async function(data) {
return await POST(`/wx/createPublicTopUp`, data);
}
// 后台充值
export const handleRecharge = async function(park, data) {
return await POST(`/wechatTopup/${park}`, data)
}