uni-app自定义tabbar(van-tabbar)

main.vue

js 复制代码
<template>
	<view>
		<index v-if="currentIndex === 0"></index>
		<signup v-else-if="currentIndex === 1"></signup>
		<test v-else-if="currentIndex === 2"></test>
		<custom-tabbar ref="tabBarComponent" @changeItem="changeItem"></custom-tabbar>
	</view>
</template>

<script>
	import signup from './signup/signup.vue'
	import test from './test.vue'
	import index from './index.vue'

	export default {
		components: {
			signup,
			test,
			index
		},
		data() {
			return {
				currentIndex: 0
			}
		},
		methods: {
			changeItem(item) {
				this.currentIndex = item
			}
		}
	}
</script>

<style scoped>
page{
			background-color: #f6f7fb;
		}
</style>

custom-tabbar

js 复制代码
<template>
  <view>
    <van-tabbar :active="active" @change="onChange" :placeholder="true"  active-color="#3856ff" inactive-color="#666666">
      <van-tabbar-item v-for="(item, index) in list" :key="index" :icon="item.icon">
        {{ item.text }}
      </van-tabbar-item>
    </van-tabbar>
  </view>
</template>

<script>
export default {
  data() {
    return {
      active: 0,
      list: [
        {
          icon: 'home-o',
          text: '首页',
          url: '/pages/index'
        },
        {
          icon: 'search',
          text: '示例2',
          url: '/pages/signup/signup'
        },
        {
          icon: 'smile-o',
          text: '示例3',
          url: '/pages/test'
        }
      ]
    };
  },

  methods: {
    onChange(event) {
      this.active = event.detail;
	  this.$emit("changeItem",this.active);
      // uni.switchTab({
      //   url: this.list[event.detail].url
      // });
    },

    init() {
      const pages = getCurrentPages();
      const page = pages[pages.length - 1];
      this.active = this.list.findIndex(item => item.url === `/${page.route}`);
    }
  },

  mounted() {
    // this.init();
  }
};
</script>

全部菜单放在一个界面使用v-if显示隐藏的做法是因为单独页面的话第一次切换下标菜单栏会闪烁(但是使用v-if又要自定义导航栏,就...挺离谱的), 如果不使用这种v-if显示的话(单独页面)可以在每个菜单界面加上以下代码(会闪烁),如果大家有更好的方案可以交流一下

js 复制代码
		<!-- 引入组件,并添加 ref 属性 -->
		<custom-tabbar ref="tabBarComponent"></custom-tabbar>
		
		onShow() {
			this.$refs.tabBarComponent.init();
		},
		// 解除下面的注释
		// uni.switchTab({
      //   url: this.list[event.detail].url
      // });
相关推荐
成都被卷死的程序员28 分钟前
响应式网页设计--html
前端·html
fighting ~31 分钟前
react17安装html-react-parser运行报错记录
javascript·react.js·html
老码沉思录37 分钟前
React Native 全栈开发实战班 - 列表与滚动视图
javascript·react native·react.js
abments38 分钟前
JavaScript逆向爬虫教程-------基础篇之常用的编码与加密介绍(python和js实现)
javascript·爬虫·python
mon_star°1 小时前
将答题成绩排行榜数据通过前端生成excel的方式实现导出下载功能
前端·excel
Zrf21913184551 小时前
前端笔试中oj算法题的解法模版
前端·readline·oj算法
老码沉思录1 小时前
React Native 全栈开发实战班 - 状态管理入门(Context API)
javascript·react native·react.js
文军的烹饪实验室2 小时前
ValueError: Circular reference detected
开发语言·前端·javascript
Martin -Tang3 小时前
vite和webpack的区别
前端·webpack·node.js·vite
迷途小码农零零发3 小时前
解锁微前端的优秀库
前端