增加函数:getUserStatTotalInfo

This commit is contained in:
weinan2087
2022-09-26 14:32:26 +08:00
parent d288ee4676
commit 8701b35ba2

View File

@@ -129,6 +129,16 @@ const getRanking = function(queryData) {
}
/**
* 查询统计用户经验值等级、累计学习时长、累计U币数量、累计经验值
* @author wn
* @param {String} aid 用户的id
*/
const getUserStatTotalInfo = function(aid) {
return ajax.get(baseURL,'/xboe/m/stat/user/getUserStatTotalInfo?aid='+aid);
}
export default {
sendEvent,
userTotal,
@@ -140,5 +150,6 @@ export default {
getUserEValueAndLevel,
dynamicHide,
exportUserCoinRecord,
getRanking
getRanking,
getUserStatTotalInfo
}