增加 用户的登录勋章 接口

This commit is contained in:
daihh
2022-10-29 10:44:43 +08:00
parent 47128d001f
commit b8ab5e0c36

View File

@@ -144,6 +144,13 @@ const getRanking = function(queryData) {
return ajax.get(baseURL,'/xboe/m/stat/user/statinfo?aid='+aid); return ajax.get(baseURL,'/xboe/m/stat/user/statinfo?aid='+aid);
} }
/**
* 用户的登录勋章新版上线15天内登录过一次
* @author wn
*/
const getUserLoginMedal = function() {
return ajax.get(baseURL,'/xboe/m/stat/medal/login-medal');
}
export default { export default {
@@ -158,5 +165,6 @@ export default {
exportUserCoinRecord, exportUserCoinRecord,
getRanking, getRanking,
getUserStatTotalInfo, getUserStatTotalInfo,
userDynamicfollows userDynamicfollows,
getUserLoginMedal
} }