mpvue使用scroll-view
emer 发布于 2018-8-16 16:25 6435 次阅读
mpvue 使用方法
注意点
1.<scroll-view :style="{'height': '300px'}"></scroll-view>
要设置高度
2. 举例:小程序原先方法是bindscrolltolower,在mpvue当中要写成@scrolltolower
template 部分
- 1
- 2
- 3
- 4
- 5
methods 部分
获取屏幕高度减去上层高度为内容滚动高度:
mounted(){
var that=this;
wx.getSystemInfo({
success: function(res) {
console.log(res.model)
console.log(res.pixelRatio)
console.log(res.windowWidth)
console.log(res.windowHeight);
that.scrollHeight=res.windowHeight-95;
console.log(res.language)
console.log(res.version)
}
})
}