加上这行代码,禁止蒙版下的页面滚动:
@touchmove.stop.prevent=""
示例:
<!-- 全屏遮罩层 - 文件上进度 -->
<u-overlay :show="isShowFileUploadLoading">
<view @touchmove.stop.prevent="" style="display: flex;align-items: center;justify-content: center;height: 100%;padding:0 50rpx;">
<view>
<view style="color:white;margin-bottom:20rpx;">处理中,请耐心等待</view>
<u-line-progress :percentage="uploadFileProcess" activeColor="#ff0000" height="16" :showText="false"></u-line-progress>
</view>
</view>
</u-overlay>