user-api.js
1.43 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/**
* 个人中心 编辑资料api
* @author: gaohongwei<hongwei.gao@yoho.cn>
* @date: 2016/8/16
*/
const api = global.yoho.API;
const getUserInfo = uid => {
return api.get('', {
method: 'app.passport.profile',
uid: uid
});
};
const getUserContactInfo = uid => {
return api.get('', {
method: 'web.passport.getUserContacts',
uid: uid
});
};
const getProviceCityInfo = (parentId) => {
return api.get('', {
method: 'app.address.provinces',
id: parentId
});
};
const getUserHabitsInfo = (uid) => {
return api.get('', {
method: 'web.passport.getUserHabits',
uid: uid
});
};
const getUserLikeBrand = (uid) => {
return api.get('', {
method: 'web.passport.getLikeBrand',
uid: uid
});
};
const getTipConfig = (uid) => {
return api.post('', {
method: 'app.resources.config.clientInitConfig',
uid: uid
});
};
const editUserInfo = (userInfo) => {
return api.get('', {
method: 'app.passport.modifyBase',
uid: userInfo.uid,
nick_name: userInfo.nickname,
username: userInfo.username,
gender: userInfo.gender,
profession: userInfo.profession,
income: userInfo.income,
birthday: userInfo.birthday
});
};
module.exports = {
getUserInfo,
getUserContactInfo,
getProviceCityInfo,
getUserHabitsInfo,
getUserLikeBrand,
getTipConfig
};