安卓机上,tabbar页面中,获取的窗口高度,有误差
安卓机上,tabbar页面中,获取的窗口高度赋值给scroll-view,高度值不对
tabbar页面中有个scroll-view,左侧的分类是一个scroll-view
<scroll-view scroll-y=“true” style=“height: {{winHeight}}px; box-sizing: border-box;padding-top: 88rpx;”></scroll-view>
js部分:
wx.getSystemInfo({
success: function (res) {
this.setData({
winWidth: res.windowWidth,
winHeight: res.windowHeight
});
}
});
获取的winHeight比实际屏幕的高度低了一个tabar的高度