app.js 899 B

123456789101112131415161718192021222324252627282930313233343536
  1. //app.js
  2. import {
  3. GetQueryString
  4. } from 'utils/util'
  5. // const Towxml = require('/towxml/main');
  6. App({
  7. onLaunch: function (options) {
  8. // 判断设备是否为 iPhone X
  9. this.checkIsIPhoneX()
  10. },
  11. globalData: {
  12. isIPX: false, // 当前设备是否为 iPhone X
  13. isIOS: false, // 判断设备是否为苹果
  14. userInfo: null,
  15. statusBarHeight: wx.getSystemInfoSync()['statusBarHeight'],
  16. userGrade: '二年级'
  17. },
  18. checkIsIPhoneX: function () {
  19. const self = this
  20. wx.getSystemInfo({
  21. success: function (res) {
  22. // 根据 model 进行判断
  23. console.log(res)
  24. console.log(res.system.search('iOS'))
  25. if (res.model.search('iPhone X') != -1) {
  26. self.globalData.isIPX = true
  27. }
  28. if (res.system.search('iOS') != -1) {
  29. self.globalData.isIOS = true
  30. }
  31. }
  32. })
  33. },
  34. // towxml: new Towxml()
  35. })