index.js 359 B

123456789101112131415161718
  1. var app = getApp()
  2. Page({
  3. onLoad: function () {
  4. console.log('onLoad')
  5. wx.getSystemInfo({
  6. success: (res) => {
  7. this.setData({
  8. screenWidth: res.screenWidth,
  9. screenHeight: res.screenHeight,
  10. bannerWidth: res.screenWidth,
  11. bannerHeight: res.screenWidth * 363 / 543
  12. })
  13. }
  14. })
  15. }
  16. })