移动端禁止弹窗底层body滑动
弹出弹窗时: document.documentElement.style.position = 'static' document.body.style.overflow = '' 关闭弹窗时: document.documentElement.style.position = 'fixed' document.body.style.overflow = 'hidden'
弹出弹窗时: document.documentElement.style.position = 'static' document.body.style.overflow = '' 关闭弹窗时: document.documentElement.style.position = 'fixed' document.body.style.overflow = 'hidden'