index.js
691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/**
* Created by PhpStorm.
* User: Targaryen
* Date: 2016/8/10
* Time: 13:43
*/
'use strict';
// const logger = global.yoho.logger;
const favApi = global.yoho.FavAPI;
/**
* 收藏数量接口
* @param params
* @returns {*|Promise.<TResult>}
*/
const favorite = (params) => {
return favApi.get('brower', {
method: 'app.favorite.getFavoriteCount',
uid: params.uid || '8039759'
}, {code: 200, cache: false}).then(result => {
if (result.data) {
return result;
}
});
};
/**
* 个人中心首页
* @param params
* @returns {function()}
*/
const index = (params) => {
return favorite;
};
module.exports = {
index
};