vue页面出现弹框页面禁止滚动,弹框消失,恢复正常滑动效果
//禁止滑动 var mo=function(e){e.preventDefault();}; document.body.style.overflow='hidden'; document.addEventListener("touchmove",mo,false) //恢复滑动 var mo=function...