微信小程序自定义导航栏返回和标题

1.新建组件

index.json


{
  "component": true
}

navbar.wxss

//navbar.wxss
.navbar{
  width: 100%;
  //设置导航栏固定在顶部
  position: fixed;
  top: 0;
  z-index: 99;
}
.arrow-content{
  position: absolute;
  left: 40rpx;
  z-index: 999;
  display: flex;
  align-items: center;
}
.arrow{
  width: 20rpx;
  height: 20rpx;
  border: 5rpx solid #FFFFFF;
  border-right-color:transparent;
  border-bottom-color:transparent;
  transform: rotate(-45deg);
}
.text{
  position: absolute;
  left: 0;
  right: 0;
  font-size: 39rpx;
  font-weight: bolder;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

index.ts

// 获取应用实例
const app = getApp();
Component({
  properties: {
    navbarData: {   //navbarData   由父页面传递的数据,变量名字自命名
      type: Object,
      value: {},
      observer: function (newVal, oldVal) {}
    },
    background:{
      type: String,
      value: 'linear-gradient(to right,#FF3413,#FF924D)'
    },
    isSowArrow:{
      type: Boolean,
      value: true
    },
  },
  data:{
    capsuleTop: '', //胶囊距离屏幕顶部的距离
    capsuleHeight: '', //胶囊高度
    navbarHeight: '' //导航栏高度
  },
  lifetimes: {
    attached: function () {
      this.setData({
        capsuleTop: app.globalData.capsule.top, 
        capsuleHeight: app.globalData.capsule.height, 
        navbarHeight: (app.globalData.capsule.top - app.globalData.system.statusBarHeight) * 2 + app.globalData.capsule.height + app.globalData.system.statusBarHeight, 
      })
     }
  },
  methods: {
    handleGoToBack(){
      wx.navigateBack({
        delta: 1
      })
    }
  }
})

index.wxml


  
    
  
  {{navbarData.title}}

组件定义完毕

2.修改app.ts文件,获取胶囊和系统信息


App({
  globalData: {
    system: '',
    capsule: ''
  },
  onLaunch: function () {
   // 在 app.js 中全局获取一次系统和胶囊信息
   // 获取系统信息
   wx.getSystemInfo({
    success: res => {
      this.globalData.system = res
    }
  })
  // 获取胶囊信息
  this.globalData.capsule = wx.getMenuButtonBoundingClientRect()
  }
})

3.在具体页面中引用,index.wxml


修改对应index.ts文件

data: {
    // 组件所需的参数
    nvabarData: {
      showCapsule: 0, //是否显示左上角图标   1表示显示    0表示不显示
      title: '信息', //导航栏 中间的标题
    },
  
  },

4.实现效果

微信小程序自定义导航栏返回和标题_第1张图片

 参考:微信小程序实现原生导航栏和自定义头部导航栏_微信小程序头部导航栏_花铛的博客-CSDN博客

微信小程序自定义封装顶部导航栏_码砖猿的博客-CSDN博客

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