在table中添加行 滾動條自動滾動到最后一行
??????????????? let tableScroll = document.querySelectorAll('.tableScroll')//獲取table
? ? ? ? ? ? ? ? this.$nextTick(() => {
? ? ? ? ? ? ? ? ? ? console.log(tableScroll)
? ? ? ? ? ? ? ? ? ? for(let i=0; i<tableScroll.length; i++){
?????????????????????? //在滾動條出現(xiàn)的地方設(shè)置scrollTop值為scrollHeight
? ? ? ? ? ? ? ? ? ? ? ? tableScroll[i].children[2].scrollTop = tableScroll[i].children[2].scrollHeight
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? })