laravel+vue项目实现动态路由标签

简单记录一下laravel+vue项目中使用vue路由实现的动态标签

直接上一个真实的操作效果吧,只是实现了基本功能,没有去布局
在这里插入图片描述
实现动态路由是直接对vue的路由直接进行操作,然后跟换组件页面来实现的。

js代码

RouteTag.vue
<template>
    <div class="tags" v-if="showTags">
        //显示当前路由标签
        <ul>
            <li class="tags-li" v-for="(item,index) in tagsList" :class="{'active': isActive(item.path)}" :key="index">
                <router-link :to="item.path" class="tags-li-title">
                    {{item.title}}
                </router-link>
                //这里判断index是为了让默认存在的路由标签不会被关闭
                <span class="tags-li-icon" @click="closeTags(index)" v-if="index"><i class="el-icon-close"></i></span>
            </li>
        </ul>
        //关闭其他和关闭所有路由标签的选项
        <div class="tags-close-box">
            <el-dropdown @command="handleTags">
                <el-button size="mini">
                    <i class="el-icon-arrow-down el-icon--right"></i>
                </el-button>
                <el-dropdown-menu size="small" slot="dropdown">
                    <el-dropdown-item command="other">关闭其他</el-dropdown-item>
                    <el-dropdown-item command="all">关闭所有</el-dropdown-item>
                </el-dropdown-menu>
            </el-dropdown>
        </div>
    </div>

</template>

<script>
    export default {
        name: "RouteTag",
        data() {
            return {
                //装每个路由标签属性的数组
                tagsList: [],
            }
        },
        computed: {
            showTags() {
                 return this.tagsList.length > 0;
            }
        },
        watch: {
            // 对router进行监听,每当访问router时,对tags的进行修改
            $route(newValue) {
                this.setTags(newValue);
            }
        },
        created() {
            // 第一次进入页面时,修改tag的值
            this.tagsList.push({
                title: 'home',
                path: '/',
            })
        },
         methods: {
            isActive(path) {
                return path === this.$route.fullPath;
            },
            // 关闭单个标签
            closeTags(index) {
                const delItem = this.tagsList.splice(index, 1)[0];
                const item = this.tagsList[index] ? this.tagsList[index] : this.tagsList[index - 1];
                if (item) {
                    delItem.path === this.$route.fullPath && this.$router.push(item.path);

                } else {
                    this.$router.push('/');
                    this.show=false;
                }
            },
            // 关闭全部标签
            closeAll() {
                //过滤出首页标签,并跳转到首页去
                const curItem = this.tagsList.filter(item => {
                    return item.path === '/';
                })
                this.tagsList = curItem;
                this.$router.push('/');
            },
            // 关闭其他标签
            closeOther() {
                //过滤出首页和当前路由标签
                const curItem = this.tagsList.filter(item => {
                    console.log(item.path)
                    return (item.path === this.$route.fullPath || item.path === '/');
                })
                this.tagsList = curItem;

            },
            // 设置标签
            setTags(route) {
                //用some判断当前监听路由路径是否是tagsList其中一个
                //some如果回调函数中有任意一个满足条件,则返回true;否则为false。
                const isExist = this.tagsList.some(item => {
                    return item.path === route.fullPath;
                })
                //如果tagsList其中没有就添加进去
                if(!isExist && this.tagsList) {
                    this.tagsList.push({
                        title: route.meta.title,
                        path: route.fullPath,
                        name: route.matched[0].components.default.name
                    })
                }
            },
            // 当关闭所有页面时隐藏
            handleTags(command) {
                command === 'other' ? this.closeOther() : this.closeAll();
            }
         }

    }
</script>

<style scoped>
    .tags {
        position: relative;
        height: 50px;
        overflow: hidden;
        background: white;
        padding-right: 120px;
    }

    .tags ul {
        box-sizing: border-box;
        width: 100%;
        height: 100%;
    }

    .tags-li {
        float: left;
        margin: 3px 5px 2px 3px;
        border-radius: 3px;
        font-size: 15px;
        overflow: hidden;
        cursor: pointer;
        height: 30px;
        line-height: 23px;
        border: 1px solid #e9eaec;
        background: #fff;
        padding: 0 5px 0 12px;
        vertical-align: middle;
        color: #666;
        -webkit-transition: all .3s ease-in;
        -moz-transition: all .3s ease-in;
        transition: all .3s ease-in;
    }

    .tags-li:not(.active):hover {
        background: #f8f8f8;
    }

    .tags-li-title {
        float: left;
        max-width: 80px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        margin-right: 5px;
        color: #666;
    }

    .tags-li.active {
        color: #fff;
        border: 1px solid #10B9D3;
        background-color: #67C23A;
    }

    .tags-li.active .tags-li-title {
        color: #fff;
    }

    .tags-close-box {
        position: fixed;
        right: 0;
        top: 50px;
        box-sizing: border-box;
        padding-top: 1px;
        text-align: center;
        z-index: 10;
    }

</style>

这里给tagsList push进去的数据是你在路由文件定义好的属性,下面是我定义的路由文件:

{
            path: '/',
            name: 'home',
            component: resolve => void(require(['../components/Head/Home.vue'], resolve)),
            meta: {title: 'home'}
        },
        {
            path: '/school',
            name: 'school',
            component: resolve => void(require(['../components/Head/School.vue'], resolve)),
            meta: {title: 'school'}
        },
        {
            path: '/course',
            name: 'course',
            component: resolve => void(require(['../components/Head/Course.vue'], resolve)),
            meta: {title: 'course'}
        }

然后直接在需要使用路由标签的地方直接使用RouteTag.vue就行了

	<RouteTag></RouteTag>
	import RouteTag from "./components/RouteTag";
	components: {
            RouteTag,
        },
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值