wxml部分:
<swiper autoplay="{{autoplay}}">
<swiper-item></swiper-item>
</swiper>
js部分:
Page({
data: {
autoplay: "true"
}
点击事件名: function (e) {
this.setData({
autoplay: !this.data.autoplay
})
})