// wxml
<view style="height:{{windowHeight}}px;width:100%;">
</view>
//js
data: {
windowHeight: 0,
},
onLoad: function (options) {
const sysInfo = wx.getSystemInfoSync()
this.setData({
windowHeight: sysInfo.windowHeight,
})
},