app.js 302 B

12345678910111213
  1. //app.js
  2. App({
  3. SystemInfo: wx.getSystemInfoSync(),
  4. onLaunch: function() {
  5. var sysInfo = wx.getSystemInfoSync();
  6. console.log(sysInfo);
  7. this.globalData.innerWidth = sysInfo.windowWidth;
  8. this.globalData.innerHeight = sysInfo.windowHeight;
  9. },
  10. globalData: {
  11. userInfo: null
  12. }
  13. })