app.js 781 B

1234567891011121314151617181920212223242526272829303132
  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. },
  15. checkIsIPhoneX: function () {
  16. const self = this
  17. wx.getSystemInfo({
  18. success: function (res) {
  19. // 根据 model 进行判断
  20. console.log(res)
  21. console.log(res.system.search('iOS'))
  22. if (res.model.search('iPhone X') != -1) {
  23. self.globalData.isIPX = true
  24. }
  25. if (res.system.search('iOS') != -1) {
  26. self.globalData.isIOS = true
  27. }
  28. }
  29. })
  30. },
  31. towxml: new Towxml()
  32. })