uniapp不能像jquery那样$,要获取对象这么做,注意滚动条高度要是一直设置成一样的,是不会赋值的,所以
parseInt(that.historyHeight) == tmp ? tmp - 1 : tmp;
//获取历史记录滚动条高度,用于每次下拉定位到最新的数据(底部)
let historycontainer = uni.createSelectorQuery().select(".historycontainer");
historycontainer.boundingClientRect(function(data) {
var tmp = parseInt(data.height - data.bottom - data.top) // 获取滚动条高度
that.historyHeight = parseInt(that.historyHeight) == tmp ? tmp - 1 : tmp;
}).exec()