代码: getBarHeight(){ const res = uni.getSystemInfoSync() if(res.platform==='ios'){ return 44+res.statusBarHeight }else if(res.platform==='android'){ return 48+res.statusBarHeight }else{ return 0; } }, //获取可视区域高度 getClineHeight(){ const res = uni.getSystemInfo({ success...
},//获取可视区域高度getClineHeight(){constres = uni.getSystemInfo({success:(res=>{this.clientHeight= res.windowHeight-uni.upx2px(80)-this.getBarHeight(); }) }); }, AI代码助手复制代码 三、减掉的部分 白色部分=绿色部分(windowHeight)-蓝色部分(ios44,Android48)-橙色部分(getSystemInfoSync中的s...