Authored by htoooth

fix

... ... @@ -45,11 +45,14 @@ module.exports = class extends global.yoho.BaseModel {
*
* @param string mail 邮箱地址
*/
sendCodeToEmailAsync(email) {
sendCodeToEmailAsync(email, unused ,id, captcha) { // eslint-disable-line
return this.get({
data: {
method: 'app.register.backpwdByEmail',
email: email
email: email,
udid: id,
fromPage: PAGE,
degrees: captcha
}
});
}
... ...