uni-app开发微信小程序,禁止弹窗下方页面滑动类似于遮罩;禁止弹窗页面内容滑动

一、禁止弹窗下方页面滑动

在弹窗的外部盒子上加上 @touchmove.stop.prevent=“moveHandle”

<view class="text_ComHeight"  @touchmove.stop.prevent="moveHandle">

</view>

在methods中定义方法 moveHandle

methods: {
        // 禁止弹窗滚动
        moveHandle: function() {
            return false
        },
}

二、禁止弹窗页面内容的滑动

在弹窗的最大的盒子上,将该盒子的高度设定为100vh

<view  class="shareBox">
    这里是弹窗的具体信息内容
</view>

.shareBox{
  height: 100vh;
}    

猜你喜欢

转载自blog.csdn.net/weixin_45395283/article/details/132683832