完成智慧充值模块

This commit is contained in:
gyq
2025-11-24 10:53:19 +08:00
parent e4f5cc8519
commit 046437ce54
14 changed files with 1342 additions and 1132 deletions

View File

@@ -168,12 +168,24 @@ export function shopRechargePost(data) {
/**
* 智慧充值规/配置信息获取
* @param {Object} parmas
* @param {Object} data
*/
export function shopRechargeGet(parmas) {
export function shopRechargeGet(data) {
return request({
url: `${urlType}/admin/shopRecharge`,
method: 'get',
parmas
data
});
}
/**
* 获取店铺用户充值记录
* @param {Object} data
*/
export function shopUserFlow(data) {
return request({
url: `/account/admin/shopUser/flow`,
method: 'get',
data
});
}