uniapp去怎么去底部
使用
this.get_bottom(200)
200是动画效果 0是无动画
// 去底部
get_bottom(i) {
console.log(i)
let thise=this
setTimeout(()=>{
uni.pageScrollTo({
scrollTop: 999999999,
duration: i,
success:function(){
thise.jiazai=1
}
})
},200)
}