Feat(积分):接口数据对接

This commit is contained in:
lifizer
2024-04-08 13:06:01 +08:00
parent 6b2da9e91d
commit 01bed46bce
4 changed files with 359 additions and 4 deletions
+15
View File
@@ -539,3 +539,18 @@ export function getRechargeApi() {
export function getUserCenterBanner() {
return request.get("userCenterBanner");
}
/*
* 用户积分信息
*/
export function getUserPointInfo(param) {
return request.get('/user/points/info', param, { login: true })
}
/*
* 用户积分记录
*/
export function getUserPointBill(param) {
return request.get('/user/points/bill', param, { login: true })
}