app.js 966 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. console.log(options);
  11. if(!wx.getStorageSync('user')){
  12. wx.setStorageSync('options',options)
  13. wx.navigateTo({
  14. url: './pages/loginPage/loginPage'
  15. })
  16. }
  17. },
  18. globalData: {
  19. isIPX: false, // 当前设备是否为 iPhone X
  20. isIOS: false, // 判断设备是否为苹果
  21. },
  22. checkIsIPhoneX: function () {
  23. const self = this
  24. wx.getSystemInfo({
  25. success: function (res) {
  26. // 根据 model 进行判断
  27. console.log(res)
  28. console.log(res.system.search('iOS'))
  29. if (res.model.search('iPhone X') != -1) {
  30. self.globalData.isIPX = true
  31. }
  32. if (res.system.search('iOS') != -1) {
  33. self.globalData.isIOS = true
  34. }
  35. }
  36. })
  37. },
  38. towxml: new Towxml()
  39. })