微信小程序中,如何禁止手动滑动 swiper 组件

361 阅读1分钟

wxml:在 swiper-item 增加一个方法如下所示:

<swiper-item catchtouchmove="stopTouchMove">

js页面:

stopTouchMove: function() {
  return false;
}