<div class="table" @mousewheel="scroll" @DOMMouseScroll="scroll" @touchend="scroll" ref="table">
scroll(e){
var table=document.querySelector('.el-table__body-wrapper');
var a=table.clientHeight;//可视高度
var b=table.scrollHeight;//滚动条长度
var c=table.scrollTop;//滚动条高度
// console.log(c);
e = e || window.event;
if(a+c>=b){
if (e.wheelDelta) { //判断浏览器IE,谷歌滑轮事件
if (e.wheelDelta > 0) { //当滑轮向上滚动时
//事件
}
if (e.wheelDelta < 0) { //当滑轮向下滚动时
//事件
this.loadMore();
console.log(2);
}
} else if (e.detail) { //Firefox滑轮事件
if (e.detail> 0) { //当滑轮向上滚动时
//事件
}
if (e.detail< 0) { //当滑轮向下滚动时
//事件
this.loadMore();
}
}
}
},