Authored by 陈峰

尺码选择触发时间

... ... @@ -151,19 +151,19 @@ class ChosePanel {
$chooseInfo = $('.choosed-info');
}
_regEvents() {
$yohoPage.on('touchend', '.chose-panel', (e) => {
$yohoPage.on('touchstart', '.chose-panel', (e) => {
return this._closeClick(e);
});
$yohoPage.on('touchstart', '.block', (e) => {
this._blockClick(e);
});
$yohoPage.on('touchend', '.btn-plus,.btn-minus', (e) => {
$yohoPage.on('touchstart', '.btn-plus,.btn-minus', (e) => {
this._numClick(e);
});
$yohoPage.on('touchstart', '.thumb', (e) => {
this._thumbClick(e);
});
$yohoPage.on('click', '#chose-btn-sure', (e) => {
$yohoPage.on('touchstart', '#chose-btn-sure', (e) => {
return this._choseBtnSureClick(e);
});
}
... ...