给朋友做一个聊天的小程序 要实显示最新的那条数据 ,就和微信聊天界面差不多,多的一点就是在对话框里面有点击按钮,废话不多说,给自己记录一下
//获取高低
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
});
},
版权声明:本文为qq_43356920原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。