Authored by zhangxiaoru

currency

... ... @@ -96,6 +96,10 @@ const yohoCoinTotal = (uid)=> {
method: 'app.yoho.yohocoin',
uid: uid
}).then(result => {
if(!result.data.yohocoin_num || result.data.yohocoin_num === '') {
result.data.yohocoin_num = 0
}
return result;
});
};
... ...
... ... @@ -66,4 +66,3 @@ $('#begin-time').on('change', function() {
beginTime = Bll.getTime(new Date(), months);
Bll.getDataList(type, page, beginTime);
});
... ...