Tags.vue 4.9 KB
Newer Older
L
lin-xin 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
<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>
                <span class="tags-li-icon" @click="closeTags(index)"><i class="el-icon-close"></i></span>
            </li>
        </ul>
        <div class="tags-close-box">
            <el-dropdown @command="handleTags">
                <el-button size="mini" type="primary">
                    标签选项<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>
L
lin-xin 已提交
26
    import bus from './bus';
L
lin-xin 已提交
27 28 29 30 31 32 33 34
    export default {
        data() {
            return {
                tagsList: []
            }
        },
        methods: {
            isActive(path) {
L
lin-xin 已提交
35
                return path === this.$route.fullPath;
L
lin-xin 已提交
36 37 38 39 40 41
            },
            // 关闭单个标签
            closeTags(index) {
                const delItem = this.tagsList.splice(index, 1)[0];
                const item = this.tagsList[index] ? this.tagsList[index] : this.tagsList[index - 1];
                if (item) {
L
lin-xin 已提交
42
                    delItem.path === this.$route.fullPath && this.$router.push(item.path);
L
lin-xin 已提交
43
                }else{
L
lin-xin 已提交
44
                    this.$router.push('/');
L
lin-xin 已提交
45 46 47 48 49
                }
            },
            // 关闭全部标签
            closeAll(){
                this.tagsList = [];
L
lin-xin 已提交
50
                this.$router.push('/');
L
lin-xin 已提交
51 52 53 54
            },
            // 关闭其他标签
            closeOther(){
                const curItem = this.tagsList.filter(item => {
L
lin-xin 已提交
55
                    return item.path === this.$route.fullPath;
L
lin-xin 已提交
56 57 58 59 60 61
                })
                this.tagsList = curItem;
            },
            // 设置标签
            setTags(route){
                const isExist = this.tagsList.some(item => {
L
lin-xin 已提交
62
                    return item.path === route.fullPath;
L
lin-xin 已提交
63
                })
64 65 66 67 68 69 70 71 72 73
                if(!isExist){
                    if(this.tagsList.length >= 8){
                        this.tagsList.shift();
                    }
                    this.tagsList.push({
                        title: route.meta.title,
                        path: route.fullPath,
                        name: route.matched[1].components.default.name
                    })
                }
L
lin-xin 已提交
74
                bus.$emit('tags', this.tagsList);
L
lin-xin 已提交
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
            },
            handleTags(command){
                command === 'other' ? this.closeOther() : this.closeAll();
            }
        },
        computed: {
            showTags() {
                return this.tagsList.length > 0;
            }
        },
        watch:{
            $route(newValue, oldValue){
                this.setTags(newValue);
            }
        },
        created(){
            this.setTags(this.$route);
        }
    }

</script>


L
lin-xin 已提交
98
<style>
L
lin-xin 已提交
99 100
    .tags {
        position: relative;
L
lin-xin 已提交
101
        height: 30px;
L
lin-xin 已提交
102 103 104
        overflow: hidden;
        background: #fff;
        padding-right: 120px;
105
        box-shadow: 0 5px 10px #ddd;
L
lin-xin 已提交
106 107 108 109 110 111 112 113 114 115
    }

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

    .tags-li {
        float: left;
L
lin-xin 已提交
116
        margin: 3px 5px 2px 3px;
L
lin-xin 已提交
117 118 119 120
        border-radius: 3px;
        font-size: 12px;
        overflow: hidden;
        cursor: pointer;
L
lin-xin 已提交
121 122
        height: 23px;
        line-height: 23px;
L
lin-xin 已提交
123 124 125 126 127 128 129 130 131 132
        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;
    }

L
lin-xin 已提交
133
    .tags-li:not(.active):hover {
L
lin-xin 已提交
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
        background: #f8f8f8;
    }

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

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

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

    .tags-close-box {
        position: absolute;
        right: 0;
        top: 0;
        box-sizing: border-box;
L
lin-xin 已提交
160
        padding-top: 1px;
L
lin-xin 已提交
161 162
        text-align: center;
        width: 110px;
L
lin-xin 已提交
163
        height: 30px;
L
lin-xin 已提交
164 165 166 167 168 169
        background: #fff;
        box-shadow: -3px 0 15px 3px rgba(0, 0, 0, .1);
        z-index: 10;
    }

</style>