欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  互联网

微信小程序自定义tabbar组件

程序员文章站 2022-03-09 12:53:07
本文实例为大家分享了微信小程序自定义tabbar组件的具体代码,供大家参考,具体内容如下由于项目需求,必须自己写组件:第一步:在app.json中配置tabbar,自定也组件也必须配置,"custom...

本文实例为大家分享了微信小程序自定义tabbar组件的具体代码,供大家参考,具体内容如下

由于项目需求,必须自己写组件:

第一步:在app.json中配置tabbar,自定也组件也必须配置,"custom": true,list里配置所有的tabbar页面。

 "tabbar": {
 "custom": true,
 "color": "red",
 "selectedcolor": "#3b81d7",
 "backgroundcolor": "#000000",
 "list": [{
 "pagepath": "pages/role/insureindex/index",
 "text": "首页"
 }, {
 "pagepath": "pages/role/mineindex/index",
 "text": "首页"
 }, {
 "pagepath": "pages/index/userinfo/userinfo",
 "text": "我的"
 }]
 },

第二步:在pages的同级目录新建组件,文件夹名字:custom-tab-bar,自定义组件文件名为index。组件代码如下,应该都能看懂。

index.js

component({
 properties: {},
 
 data: {
 indeximg: "../static/images/tabbar/tab_icon_home_nor@2x.png",
 indexselectimg: "../static/images/tabbar/tab_icon_home_sel@2x.png",
 aboutusimg: "../static/images/tabbar/tab_icon_user_nor@2x.png",
 aboutusselectimg: "../static/images/tabbar/tab_icon_user_sel@2x.png",
 _tabbat: null,
 iphonex: false,
 urls: ['/pages/role/insureindex/index',
 '/pages/index/userinfo/userinfo'
 ]
 },
 attached() {
 var self = this
//此为业务代码,可不看
 wx.getstorage({
 key: 'userinfo',
 success: function (res) {
 const {
  userrolecode
 } = res.data
 if (userrolecode == '50' || userrolecode == '70') {
  self.setdata({
  ["urls[0]"]: '/pages/role/mineindex/index'
  })
 } else if (userrolecode == '30' || userrolecode == '35' || userrolecode == '40') {
  self.setdata({
  ["urls[0]"]: '/pages/role/insureindex/index'
  })
 }
 }
 })
 wx.getsysteminfo({
 success(res) {
 console.log(res.model)
 if (res.model.indexof('iphone x') >= 0) {
  self.setdata({
  iphonex: true
  })
 }
 }
 })
 },
 /**
 * 组件的方法列表
 */
 methods: {
 switchtap: function (e) {
 var self = this
 var index = e.currenttarget.dataset.index;
 var urls = self.data.urls
 wx.switchtab({
 url: urls[index],
 })
 }
 }
})

index.wxml

<div class="_tabbar {{iphonex?'_iphonex':''}}">
 <div class="titem {{_tabbat==0?'tcdk':''}}" data-index="0" bind:tap="switchtap">
 <image src="{{_tabbat==0?indexselectimg:indeximg}}" />
 <b>首页</b>
 </div>
 <div class="titem {{_tabbat==1?'tcdk':''}}" data-index="1" bind:tap="switchtap">
 <image src="{{_tabbat==1?aboutusselectimg:aboutusimg}}" />
 <b>我的</b>
 </div>
</div>

index.wxss

._tabbar {
 width: 100%;
 height: 120rpx;
 display: flex;
 align-items: center;
 background: #fff;
 font-size: 26rpx;
 color: #999999;
 box-shadow: 0px -7rpx 13rpx 0px rgba(193, 185, 204, 0.13);
}
 
._tabbar .titem {
 text-align: center;
 width: 50%;
}
 
._tabbar .titem image {
 display: block;
 margin: auto;
 width: 48rpx;
 height: 48rpx;
 margin-bottom: 10rpx;
}
 
._tabbar .tcdk {
 color: #37adfe;
}
 
._iphonex {
 height: 148rpx;
}

index.json

{
 "component": true,
 "usingcomponents": {}
}

以上为组件代码,点击tabbar跳转页面时,会重新加载tabbar组件,导致选中样式一直是默认的,因此需要在用到tabbar的页面的js文件中做如下操作:(以 “首页” 页面为例)

onshow: function () {
 this.gettabbar().setdata({
 _tabbat: 0
 })
 },

以上就已经完成了,但是看网上大家说会出现两个tabbar,我这边是没出现(一个自定义,一个自带的),如果出现的话,在app.js中的onlaunch函数中加入 wx.hidetabbar() , 隐藏自带的tabbar就可以了。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。