You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
417 B
15 lines
417 B
|
1 month ago
|
export default {
|
||
|
|
inserted(el, binding, vnode) {
|
||
|
|
// 获取element-ui定义好的scroll盒子
|
||
|
|
const SELECTWRAP_DOM = el.querySelector('.el-table__body-wrapper')
|
||
|
|
|
||
|
|
SELECTWRAP_DOM.addEventListener('scroll', function() {
|
||
|
|
const sign = 100
|
||
|
|
const scrollDistance = this.scrollHeight - this.scrollTop - this.clientHeight
|
||
|
|
if (scrollDistance <= sign) {
|
||
|
|
binding.value()
|
||
|
|
}
|
||
|
|
})
|
||
|
|
}
|
||
|
|
}
|