|
|
import {Page} from 'yoho-page';
|
|
|
|
|
|
class SmsLoginNew extends Page {
|
|
|
constructor() {
|
|
|
super();
|
|
|
|
|
|
this.selector = {
|
|
|
clearMobile: $('#clearMobile'),
|
|
|
mobileInput: $('input[name=mobile]')
|
|
|
};
|
|
|
|
|
|
this.bindEvents();
|
|
|
|
|
|
}
|
|
|
|
|
|
bindEvents() {
|
|
|
this.selector.clearMobile.on('click', this.clearMobile.bind(this));
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 清除输入的手机号
|
|
|
*/
|
|
|
clearMobile() {
|
|
|
this.selector.mobileInput.val('');
|
|
|
}
|
|
|
}
|
|
|
|
|
|
module.exports = SmsLoginNew; |
...
|
...
|
|