me-gift-api.js
4.19 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
'use strict';
const PAGE = 'pc';
module.exports = class extends global.yoho.BaseModel {
constructor(ctx) {
super(ctx);
}
/**
* [获取礼品卡列表]
* @param {[type]} uid [用户id]
* @param {[type]} status [1-可使用,2-已冻结,3-已过期,4-已用完]
* @return {[type]} [{}]
*/
getList(uid, status, page, limit) {
let options = {
method: 'app.giftcard.pagelist',
uid: uid,
status: status,
page: page,
limit: limit || 10
};
return this.get({data: options});
}
/**
* [获取礼品卡消费记录]
* @param {[type]} cardCode [礼品卡号]
* @param {[type]} uid [用户id]
* @param {[type]} page [当前页]
* @param {[type]} limit [页大小]
* @return {[type]} [{}]
*/
consumeList(params, uid) {
let options = {
method: 'app.giftcard.consumelist',
cardCode: params.cardCode,
uid: uid,
page: params.page,
limit: params.limit || 10
};
if (params.type) {
options.type = params.type;
}
return this.get({data: options});
}
/**
* [发送邮箱验证码]
* @param {[type]} email [邮箱]
* @param {[type]} uid [用户id]
* @return {[type]} [{}]
*/
sendEmailCode(email, uid) {
let options = {
method: 'app.giftcard.emailcode',
email: email,
uid: uid
};
return this.get({data: options});
}
/**
* [验证邮箱验证码]
* @param {[type]} code [邮箱验证码]
* @param {[type]} uid [用户id]
* @return {[type]} [{}]
*/
verifyEmail(code, uid) {
let options = {
method: 'app.giftcard.verifyemail',
uid: uid,
code: code
};
return this.get({data: options});
}
/**
* [激活礼品卡]
* @param {[type]} uid [用户id]
* @param {[type]} cardCode [礼品卡卡号]
* @param {[type]} cardPwd [礼品卡卡密]
* @return {[type]} [{}]
*/
activateGift(uid, cardCode, cardPwd) {
let options = {
method: 'app.giftcard.activate',
uid: uid,
cardCode: cardCode,
cardPwd: cardPwd
};
return this.get({data: options});
}
/**
* [检查手机号是否注册绑定]
* @param {[type]} area [区号]
* @param {[type]} mobile [手机号]
* @param {[type]} code [图形验证码]
* @return {[type]} [{}]
*/
changeMobileCheck(area, mobile, code) {
return this.get({data: {
method: 'app.bind.changeMobileCheck',
area: area,
mobile: mobile,
code: code
}});
}
/**
* [发验证码]
* @param {[type]} area [区号]
* @param {[type]} mobile [手机号]
* @return {[type]} [{}]
*/
smsbind(area, mobile, id, captcha) {
let options = {
method: 'app.bind.sendChangeBindMobileCodeOnlyImg',
area: area,
mobile: mobile,
udid: id,
fromPage: PAGE,
degrees: captcha
};
return this.get({data: options});
}
/**
* [修改绑定的手机号]
* @param {[type]} area [区号]
* @param {[type]} mobile [手机号]
* @param {[type]} code [验证码]
* @param {[type]} uid [用户id]
* @return {[type]} [{}]
*/
changeMobile(area, mobile, code, uid) {
let options = {
method: 'app.bind.changeMobileForce',
area: area,
mobile: mobile,
code: code,
uid: uid
};
return this.get({data: options});
}
/**
* [获取用户信息]
* @param {[type]} uid [用户id]
* @return {[type]} [{}]
*/
getProfile(uid) {
let options = {
uid: uid,
method: 'app.passport.profile'
};
return this.get({data: options});
}
};