优化智慧充值

This commit is contained in:
gyq
2025-11-22 10:15:00 +08:00
parent 96220b2c04
commit e4f5cc8519
4 changed files with 788 additions and 664 deletions

View File

@@ -152,4 +152,28 @@ export function couponGetRecord(params) {
method: 'get',
params
});
}
/**
* 智慧充值规/配置信息修改
* @param {Object} data
*/
export function shopRechargePost(data) {
return request({
url: `${urlType}/admin/shopRecharge`,
method: 'post',
data
});
}
/**
* 智慧充值规/配置信息获取
* @param {Object} parmas
*/
export function shopRechargeGet(parmas) {
return request({
url: `${urlType}/admin/shopRecharge`,
method: 'get',
parmas
});
}