index.js
934 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
41
42
43
44
45
46
47
48
49
50
51
52
/**
* Created by PhpStorm.
* User: Targaryen
* Date: 2016/8/10
* Time: 13:43
*/
'use strict';
// const logger = global.yoho.logger;
const favApi = global.yoho.FavAPI;
const api = global.yoho.API;
/**
* 收藏数量接口
* @param params
* @returns {*|Promise.<TResult>}
*/
const _favoriteData = (params) => {
return favApi.get('brower', {
method: 'app.favorite.getFavoriteCount',
uid: params.uid || '8039759'
}, {code: 200, cache: false}).then(result => {
if (result.data) {
return result;
}
});
};
/**
* 获取个人中心公告有关数据
*/
const _noticeData = () => {
return api.get('', {
method: 'app.resources.getNotices',
}).then(result => {
return result;
});
};
/**
* 个人中心首页
* @param params
* @returns {function()}
*/
const index = (params) => {
return _favoriteData;
};
module.exports = {
index
};