美文网首页
【微信小程序】van-stepper购物车事件冒泡

【微信小程序】van-stepper购物车事件冒泡

作者: 胖胖爱吃鱼啊 | 来源:发表于2021-09-06 17:46 被阅读0次
思路:

我研究最简单的方法就是外层加一个标签,用catchtap去阻止

关键代码

html:

<view catchtap="stepper">
    <van-stepper value="{{ item.amount }}" long-press="{{ false }}" data-index='{{index}}'
      data-item='{{item}}' input-width="30px" button-size="20px" min="1" integer max="9999"
      bind:change="amountChange" plus-class="num-icon" minus-class="num-icon"
      input-class="num-input" />
</view>

js:

// 阻止加减按钮冒泡
stepper() {
      //什么也不做
},

相关文章

网友评论

      本文标题:【微信小程序】van-stepper购物车事件冒泡

      本文链接:https://www.haomeiwen.com/subject/vlqywltx.html