微信小程序自定义弹框滚动与页面滚动冲突问题
方法1.
打开的函数中,如果自定义弹框当前显示,则isScroll设为true,否则设为false
<scroll-view class=“scanInvoice_content” height=“100%” scroll-y="{{isScroll}}">
//设置Page的overflow-y属性值为hidden
</scroll-view>
方法2.
如果自定义弹框不涉及滚动,则直接在自定义弹框最外层盒子加上 catchtouchmove=‘true’ 即可。