iview table 滚动条到底部
iview table组件设置固定高度后,添加数据时滚动条到底部
function scrollToBottom () {
this.$nextTick(() => {
// 当滚动条从没有到有时,不加setTimeout滚动条将不会滚动到底部
setTimeout(() => {
let overflowY = this.$el.getElementsByClassName('ivu-table-body')[0]
if (!overflowY) {
return
}
overflowY.scrollTop = overflowY.scrollHeight + 34
}, 500)
})
}