<view wx:if="{{alert}}" catchtouchmove="myCatchTouch">
<template is="alert" data="{{alertData}}" />
</view>
myCatchTouch: function () {
console.log('stop user scroll it!');
return;
},
也可以直接加上catchtouchmove="ture"
<view wx:if="{{alert}}" catchtouchmove="true">
<template is="alert" data="{{alertData}}" />
</view>
在电脑上测试是没有用的,这是触摸事件。因此,需要在手机端测试,预览生成一个开发版,用手机微信扫描即可看到效果。