vue+element实现页面顶部tag思路详解

发布时间:2022-04-16 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了vue+element实现页面顶部tag思路详解脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

在这里插入图片描述

这种tag如何写?思路总结下:

1. 页面渲染

1页面显示由数组循环得出,数组可存储在Store
(1)存储前判断是否有重复的数据,重复的话,先删除再添加。
(2)没有重复直接push

 addTag: (state, tag) => {
    const { fullPath, path, meta, query } = tag
    if (tag.path === '/login') {
      return false
    }
    const findIndex = state.tags.findIndex(ITem => item.path === tag.path)
    console.LOG(findIndex)
    if (findIndex >= 0) {
      state.tags.splice(findIndex, 1, { fullPath, path, meta, query })
    } else {
      state.tags.push({ fullPath, path, meta, query })
    }
  },

2何时触发这个添加路由方法,监听路由进入的时候,调此方法将当前this实例上的route对象携带过去。

computed: {
currentRoute() {
      return this.$route
    },
},
 watch: {
    $route: {
      handler(val) {
        if (val.name) {
          this.addTags()
        }
      },
      // 深度观察监听
      deep: true
    }
  },
  methods:{
  addTags() {
  //this.$store.dispatch 先提交给action,由他异步处理处罚mutation里面的方法,改变state里面的tags值
      this.$store.dispatch('user/addTag', this.currentRoute)
    },}

此时,tags数组里面已经有值,由于默认是白色,所以页面上看不出,接下来就是给选中的标签高亮。
1element 有个参数可以设定,可以查文档。
2选中的tag值是否等于当前路由进入的页面一致,一致则为true。

<span v-for="(tag, index) in tags" :key="index" class="tag-span">
        <el-tag
          :closable="isCloseable"
          :effect="setTagColor(tag)"
          @close="closeTags(tag)"
          @click="toTagRoute(tag)"
        >
          {{ tag.meta.title }}
        </el-tag>
      </span>
 methods:{
 setTagColor(tag) {
      return this.currentRoute.path === tag.path &#63; 'dark' : 'plain'
    },
    }

此时,tag的渲染和选中就完成了。

2. 来回切换tag

methods:{
 toTagRoute(tag) {
      this.$router.push({
        path: tag.fullPath || tag.path
      })
    },
}

3. 删除一个tag标签

1由于是数组,你无法确定用户删除哪一个,所以需要遍历找出用户当前选中的tag。然后删除,同时更新store里的值。
2删除当前tag,高亮的标签是哪一个?这里是删除标签的前一个标签,也就是数组最后一个元素。

methods:{
	 closeTags(tag) {
	      console.log(tag, 4444)
	      this.$store.dispatch('user/delTag', tag)
	      this.toLastTagRouter(this.$store.state.user.tags)//高亮删除标签的前一个tag
	    },
     toLastTagRouter(tags) {
      //注意此处传入tags是已删除后的,所以不能使用splice==》改变原数组;slice==》不改变原数组拿去数组最后一个元素
      const latestView = tags.slice(-1)[0]//tags数组最后一个元素
      console.log(latestView)
      if (latestView !== undefined && latestView.path !== undefined) {
        const { fullPath, meta, path, query } = latestView
        this.$router.push({ fullPath, meta, path, query })
      }
    },
}
//action
 delTag({ commit }, tag) {
    commit('delTag', tag)
  },
//mutation
delTag: (state, tag) => {
    //entries()对象变成一个可遍历的数组【0,{name:a,age:'20'}】
    //这里使用foreach和map也可以
    for (const [i, v] of state.tags.entries()) {
      if (v.path === tag.path) {
        state.tags.splice(i, 1)
        break
      }
    }
  },

删除全部标签

methods:{
 closeAllTags() {
      // 关闭所有 tag,仅剩余一个
      this.$store.dispatch('user/delAllTags')
      const { fullPath, meta, path, query } = this.$store.state.user.tags[0]
      // 跳转剩余 tag 路由
      this.$router.push({ fullPath, meta, path, query })
    },
}
//action
delAllTags({ commit }) {
    commit('delAllTags')
  },
//mutation
 delAllTags: (state) => {
    state.tags.splice(1, state.tags.length)
  },

到此这篇关于vue+element如何实现页面顶部tag的文章就介绍到这了,更多相关vue element页面顶部tag内容请搜索脚本宝典以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本宝典!

脚本宝典总结

以上是脚本宝典为你收集整理的vue+element实现页面顶部tag思路详解全部内容,希望文章能够帮你解决vue+element实现页面顶部tag思路详解所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。