1,使用mint-ui框架中<mt-popup></mt-popup>,在组件中加入 lockScroll="true" 阻止父页面不滑动。 2,原生弹框中,弹框页面中最外层div里面加(touchmove事件)@touchmove="handleTouchmove" 而后在methods方法里面加入 handleTouchmove (e) { e.preventDefault() }, 阻止父页面不滑动