弹出框盒子内容 添加 @touchmove.stop.prevent=""
此方法适用于弹出框页面没有滚动的情况下使用!!!
<!-- 弹出框内容 -->
<view @touchmove.stop.prevent="">
<view></view>
</view>
如果弹出框页面有滚动情况,
需要加上scroll-view组件包裹住需要滚动的内容 scroll-y(竖向)或者scroll-x(横向)!!!
<scroll-view scroll-y="true">
<view></view>
</scroll-view>
<view @touchmove.stop.prevent="">
<scroll-view scroll-y="true">
<view></view>
</scroll-view>
</view>