uniapp 获取视窗高度
, onReady: function() {
uni.getSystemInfo({
success: function(res) {
pageHeight = res.windowHeight
console.log('pageHeight',pageHeight)
}
})
setTimeout(() => {
this.mainHeight = pageHeight
}, 1000)
}
, onReady: function() {
uni.getSystemInfo({
success: function(res) {
pageHeight = res.windowHeight
console.log('pageHeight',pageHeight)
}
})
setTimeout(() => {
this.mainHeight = pageHeight
}, 1000)
}