uniapp 遮罩块滚动导致底下的页面滚动
在需要滚动的模块添加
@touchmove.stop.prevent="clear"
……
clear(){
      return
}
即
<view class="sortMethod" @touchmove.stop.prevent="clear">
可以阻止下个层级的模块滚动
在需要滚动的模块添加
@touchmove.stop.prevent="clear"
……
clear(){
      return
}
即
<view class="sortMethod" @touchmove.stop.prevent="clear">
可以阻止下个层级的模块滚动
