其他分享
首页 > 其他分享> > Vue+ElementUI使用el-popover内滚动事件穿透解决

Vue+ElementUI使用el-popover内滚动事件穿透解决

作者:互联网

Vue+ElementUI使用el-popover内滚动事件穿透解决

问题描述

el-popover中含有滚动事件,触发滚动事件的同时,底部页面也同时触发。
功能要求:当el-popover触发滚动时,底部页面禁止滚动。el-popover关闭时,底部页面恢复滚动。

解决问题

  1. 在main.js中添加以下代码
//主页禁止滑动
Vue.prototype.noScroll = function () {
    var mo = function (e) {
        e.preventDefault()
    }
    document.body.style.overflow = 'hidden'
    document.addEventListener('touchmove', mo, false)//禁止页面滑动
}

//主页恢复滑动
Vue.prototype.canScroll = function () {
    var mo = function (e) {
        e.preventDefault()
    }
    document.body.style.overflow = ''//出现滚动条
    document.removeEventListener('touchmove', mo, false)
}
  1. 在你需要禁止/恢复底部页面滚动的地方添
this.noScroll()//禁止滚动
this.canSroll()//恢复滚动
  1. el-popover在点击空白处关闭之后,开启滚动。el-popover有@hide事件,可在关闭的时候触发。
@hide="this.openScroll()"

标签:function,el,Vue,滚动,ElementUI,popover,页面
来源: https://blog.csdn.net/qq_40836414/article/details/112697273