123456789101112131415161718192021222324252627282930313233343536373839 |
- //app.js
- import {
- GetQueryString
- } from 'utils/util'
- const Towxml = require('/towxml/main');
- App({
- onLaunch: function (options) {
- // 判断设备是否为 iPhone X
- this.checkIsIPhoneX()
- console.log(options);
- if(!wx.getStorageSync('user')){
- wx.setStorageSync('options',options)
- wx.navigateTo({
- url: './pages/loginPage/loginPage'
- })
- }
- },
- globalData: {
- isIPX: false, // 当前设备是否为 iPhone X
- isIOS: false, // 判断设备是否为苹果
- },
- checkIsIPhoneX: function () {
- const self = this
- wx.getSystemInfo({
- success: function (res) {
- // 根据 model 进行判断
- console.log(res)
- console.log(res.system.search('iOS'))
- if (res.model.search('iPhone X') != -1) {
- self.globalData.isIPX = true
- }
- if (res.system.search('iOS') != -1) {
- self.globalData.isIOS = true
- }
- }
- })
- },
- towxml: new Towxml()
- })
|