app.js 495 B

12345678910111213141516171819202122
  1. //app.js
  2. import {GetQueryString} from 'utils/util'
  3. App({
  4. onLaunch: function (options) {
  5. // 判断设备是否为 iPhone X
  6. this.checkIsIPhoneX()
  7. },
  8. globalData: {
  9. isIPX: false, // 当前设备是否为 iPhone X
  10. },
  11. checkIsIPhoneX: function() {
  12. const self = this
  13. wx.getSystemInfo({
  14. success: function (res) {
  15. // 根据 model 进行判断
  16. if (res.model.search('iPhone X') != -1) {
  17. self.globalData.isIPX = true
  18. }
  19. }
  20. })
  21. }
  22. })