uniapp uni-popup弹窗出现禁止底部页面页面滚动
介绍 | 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>
posted on 2024-06-04 15:26 ZhYQ_note 阅读(1353) 评论(0) 编辑 收藏 举报