0
点赞
收藏
分享

微信扫一扫

微信小程序 - 自定义标题机型适配

J简文 2022-03-11 阅读 79
前端
<view class="nav-bar"
  :style="{
    'height': navHeight + 'px'
  }">
</view>

data() {
  return {
    // 头部总高度,iPhone5/6/7/8默认64px
    navHeight:64,
  }
}
onLoad(params) {
  this.attached()
},
methods: {
  attached() {
    var that = this;
    wx.getSystemInfo({
      success: (result) => {
        if(result.statusBarHeight == 20) {
          this.navHeight = 64
        }else {
          this.navHeight = 88
        }
      },
    })
  },
}
举报

相关推荐

0 条评论