【uniapp 微信小程序】可视区域的高度

onLoad(option) {
		let that = this;
		uni.getSystemInfo({
			success: function (res) {
				that.height = (res.windowHeight - 150) * 2; // 单位 px
			}
		});
	},

你可能感兴趣的:(uni-app,微信小程序,小程序)