const getwindowHeight = ()=>{
uni.getSystemInfo({
success: function(res) {
console.log(res.windowHeight);
windowHeight.value = res.windowHeight
}
});
}
微信小程序(uniapp)获取窗口高度
最新推荐文章于 2025-05-06 13:54:49 发布
const getwindowHeight = ()=>{
uni.getSystemInfo({
success: function(res) {
console.log(res.windowHeight);
windowHeight.value = res.windowHeight
}
});
}