uni.createSelectorQuery().select(".chat_list").boundingClientRect((res)=>{
console.log(res,'---res')
let newbottom = res.bottom+res.height
uni.pageScrollTo({
duration: 100,// 过渡时间
scrollTop: newbottom+1000,// 滚动的实际距离
})
}).exec();
网友评论