【微信小程序】自定义tabbar

1、app.json中配置 tabbar
"tabBar": {
    "custom": true,
    "list":[
      {
        "pagePath": "pages/aboutFind/find/find",
        "text": "发现",
        "iconPath": "/public/image/icon_find2.png",
        "selectedIconPath": "/public/image/icon_find1.png"
      },
      {
        "pagePath": "pages/index/index",
        "text": "通行",
        "iconPath": "/public/image/icon_go2.png",
        "selectedIconPath": "/public/image/icon_go1.png"
      },
      {
        "pagePath": "pages/aboutMe/myInfo/myInfo",
        "text": "我的",
        "iconPath": "/public/image/icon_set2.png",
        "selectedIconPath": "/public/image/icon_set1.png"
      }
    ]
},

注意添加: "custom": true

2、新建根目录文件:custom-tab-bar, 并以组件形式新增文件

在这里插入图片描述

注意点:文件夹要在根目录下,名字为custom-tab-bar,并且里面的每个文件名为index

(1)index.wxml

<view class="tabBar">
  <view class="cont">
    <block wx:for="{{list}}" wx:key="index" class="cont-item">
      <view data-path="{{item.pagePath}}" data-index="{{item.pagePath}}" bindtap="switchTab" class="{{item.search?'search':'item'}} {{selected === index ? 'on' : 'off'}}">
        <image src="{{selected === index  ? item.selectedIconPath : item.iconPath}}"></image>
        <view class="txt {{selected === index ? 'selectedColor' : ''}}">{{item.text}}</view>
      </view>
    </block>
  </view>
</view>

(2)index.js

Component({
  /**
   * 组件的属性列表
   */
  properties: {

  },

  /**
   * 组件的初始数据
   */
  data: {
    selected: 0,
    color: "#fff",
    selectedColor: "#6777FD",
    list: [
      {
        pagePath: "/pages/aboutFind/find/find",
        text: "发现",
        iconPath: "/public/image/icon_find2.png",
        selectedIconPath: "/public/image/icon_find1.png"
      },
      {
        pagePath: "/pages/index/index",
        text: "通行",
        iconPath: "/public/image/icon_go2.png",
        selectedIconPath: "/public/image/icon_go1.png",
        search: true
      },
      {
        pagePath: "/pages/aboutMe/myInfo/myInfo",
        text: "我的",
        iconPath: "/public/image/icon_set2.png",
        selectedIconPath: "/public/image/icon_set1.png"
      }
    ]
  },

  /**
   * 组件的方法列表
   */
  methods: {
    switchTab(e) {
      const data = e.currentTarget.dataset
      const url = data.path
      wx.switchTab({ url })
    }
  }
})

(3)index.json

{
  "component": true,
  "usingComponents": {}
}

(4)index.wxss

.tabBar {
  z-index: 100;
  width: 100%;
  position: fixed;
  bottom: 0;
  font-size: 28rpx;
  background-color: #fff;
  color: #636363;
  border-radius: 50rpx 50rpx 0px 0px;
}

.cont {
  z-index: 0;
  height: calc(100rpx + env(safe-area-inset-bottom) / 2);
  padding-bottom: calc(env(safe-area-inset-bottom) / 2); 
  padding-bottom: 30rpx;
  display: flex;
  justify-content: space-around;
}

.cont .item {
  font-size: 24rpx;
  position: relative;
  width: 15%;
  text-align: center;
  padding: 0;
  display: block;
  height: auto;
  line-height: 1;
  margin: 0;
  background-color: inherit;
  overflow: initial;
  justify-content: center;
  align-items: center;
  padding-top: 20rpx;
}

.cont .item:first-child {
  right: 45rpx;
}

.cont .item:last-child {
  left: 45rpx;
}

.cont .item image:first-child {
  width: 43rpx !important;
  height: 43rpx !important;
  margin: auto
}

.cont .item image:last-child {
  width: 41rpx !important;
  height: 43rpx !important;
  margin: auto
}

.cont .txt {
  margin-top: 20rpx;
}

.cont .on {
  position: relative;
}

.cont .on:not(:nth-child(2)):before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 6rpx;
  background-color: #17C2D8;
  border-radius:120rpx !important;
}

.cont .search {
  position: absolute;
  left: 50%;
  transform: translate(-50%,0);
  top: -50rpx;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cont .search image {
  width: 100rpx !important;
  height: 100rpx !important;
  z-index: 2;
  border-radius: 100%;
}

.cont .search .txt {
  margin-top: 26rpx;
}

.cont .selectedColor {
  color: #17C2D8;
}
3、在tab页面中使用

注意:如需实现 tab 选中态,要在当前页面下,通过 getTabBar 接口获取组件实例,并调用 setData 更新选中态

(1)find 自定义tabbar

onShow() {
	if (typeof this.getTabBar === 'function' && this.getTabBar()) {
	  this.getTabBar().setData({
	    selected: 0
	  })
	}
}

(2)index 自定义tabbar

onShow() {
	if (typeof this.getTabBar === 'function' && this.getTabBar()) {
	  this.getTabBar().setData({
	    selected: 1
	  })
	}
}

(3)myInfo 自定义tabbar

onShow() {
	if (typeof this.getTabBar === 'function' && this.getTabBar()) {
	  this.getTabBar().setData({
	    selected: 2
	  })
	}
}
4、效果

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

UniApp 是一个使用 Vue.js 开发跨平台应用的前端框架,它支持将代码一次编写,即可发布到多个平台,包括微信小程序。在 UniApp 中,自定义底部 tabbar 非常简单,只需要在 pages.json 中指定 tabBar 配置,然后在页面中使用自己的自定义 tabbar 组件即可。 以下是自定义底部 tabbar 的步骤: 1. 在 pages.json 文件中设置 tabBar 配置,如下所示: ```javascript { "tabBar": { "custom": true, // 使用自定义tabBar "color": "#7A7E83", "selectedColor": "#3cc51f", "backgroundColor": "#ffffff", "borderStyle": "white", "list": [ { "pagePath": "pages/index/index", "text": "首页", "iconPath": "/static/tabbar/home.png", "selectedIconPath": "/static/tabbar/home-active.png" }, { "pagePath": "pages/user/user", "text": "我的", "iconPath": "/static/tabbar/user.png", "selectedIconPath": "/static/tabbar/user-active.png" } ] } } ``` 2. 在页面中引入自己的自定义 tabbar 组件,并使用该组件替换默认的 tabBar,如下所示: ```javascript <template> <view> <router-view /> <my-tab-bar :list="list" :active.sync="active" /> </view> </template> <script> import MyTabBar from '@/components/MyTabBar.vue' export default { components: { MyTabBar }, data () { return { active: 0, list: [ { text: '首页', icon: '/static/tabbar/home.png', selectedIcon: '/static/tabbar/home-active.png', path: '/pages/index/index' }, { text: '我的', icon: '/static/tabbar/user.png', selectedIcon: '/static/tabbar/user-active.png', path: '/pages/user/user' } ] } } } </script> ``` 以上是自定义底部 tabbar 的简单介绍,如果您需要更详细的内容,请查看 UniApp 的官方文档。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值