给朋友做一个聊天的小程序 要实显示最新的那条数据 ,就和微信聊天界面差不多,多的一点就是在对话框里面有点击按钮,废话不多说,给自己记录一下
//获取高低
getHeight(){
const query = uni.createSelectorQuery().in(this);
query.select('.content').boundingClientRect(data => {
console.log(data.height);
this.shwoHeight = data.height;
this.moveto(data.height,500)
}).exec();
},
//移动位置
moveto(position,speed){
uni.pageScrollTo({
scrollTop: position,
duration: speed
});
},