暂存工作台模块,初步完成待测试和优化

This commit is contained in:
2024-11-13 17:31:26 +08:00
parent c8649288ff
commit efe3d3241d
13 changed files with 680 additions and 34 deletions

View File

@@ -30,4 +30,14 @@ export const createPublicTopUp = async function(data) {
// 后台充值
export const handleRecharge = async function(park, data) {
return await POST(`/wechatTopup/${park}`, data)
}
// 获取后台审核列表
export const getRechargeApproveList = async function({park, page, keyword}) {
return await GET(`/wx/getTopExamineList?park=${park}&page=${page}&keyword=${keyword}`)
}
// 对公审核
export const rechargeApprove = async function({ id, status, reason }) {
return await PUT(`/wx/updateTopExamineList/`, { id, status, reason })
}