微信小程序

标签

https://mp.weixin.qq.com/debug/wxadoc/dev/component/?t=1474644085698


获取屏幕高宽

onShow: function(e) {

wx.getSystemInfo({

success: (res) => {

this.setData({

windowHeight: res.windowHeight,

windowWidth: res.windowWidth

})

}

})

},

你可能感兴趣的:(微信小程序)