小程序获取当前手机型号并作出相应操作

  //获取当前微信版本
  weChatVersion() {
     
    let that = this
    let info = wx.getSystemInfoSync();
    if (/iPhone X/i.test(info.model) || /iPhone 11/i.test(info.model)) {
     
      that.globalData.tabbarHeht = true
    }
  },

你可能感兴趣的:(微信小程序)