4***@qq.com
4***@qq.com
  • 发布:2018-04-11 21:47
  • 更新:2019-10-31 10:33
  • 阅读:1076

【报Bug】mui.view.js 374行报错

分类:MUI

详细问题描述
Cannot read property 'x' of undefined

重现步骤
新建一个mui登录模板,在设置界面,随便点个进去,上下滑动就会出现这个错误

运行环境
hbuilder 9.0.2 ,windows10

附件
解决方法:
将代码
if ((detail.start.x - this.view.offsetLeft) < this.options.swipeBackPageActiveArea) {
this.isBack = true;
this._initPageTransform();
}
改为
if (detail.start && ((detail.start.x - this.view.offsetLeft) < this.options.swipeBackPageActiveArea)) {
this.isBack = true;
this._initPageTransform();
}

联系方式

2018-04-11 21:47 负责人:无 分享
已邀请:
2***@qq.com

2***@qq.com

老哥 稳得一~~~ 我试了之后 完全ok

阿澡惜

阿澡惜 - Be strong

稳的

该问题目前已经被锁定, 无法添加新回复