首页 > 其他分享 >uniapp uni-popup弹窗出现禁止底部页面页面滚动

uniapp uni-popup弹窗出现禁止底部页面页面滚动

时间:2024-06-04 15:34:03浏览次数:14  
标签:uniapp popup 滚动 app 修饰符 moveHandle uni 页面

介绍 | uni-app官网 (dcloud.net.cn)

为兼容各端,事件需使用 @ 的方式绑定,请勿使用小程序端的 bind 和 catch 进行事件绑定;也不能在 JS 中使用event.preventDefault()和event.stopPropagation()方法;
若需要禁止蒙版下的页面滚动,可使用
@touchmove.stop.prevent="moveHandle",moveHandle 可以用来处理 touchmove 的事件,也可以是一个空函数。 按键修饰符:uni-app 运行在手机端,没有键盘事件,所以不支持按键修饰符。
<view class="mask" @touchmove.stop.prevent="moveHandle">
              <uni-popup ref="popup" type="bottom" @change="popChange">

</view>

  

标签:uniapp,popup,滚动,app,修饰符,moveHandle,uni,页面
From: https://www.cnblogs.com/ZhYQ-Note/p/18230907

相关文章