RuoYi
2025-05-15 cb566a704bb79bdc6fd8bf2e764d360eaffa7a3b
ruoyi-ui/src/layout/components/TagsView/index.vue
@@ -51,7 +51,7 @@
      return this.$store.state.permission.routes
    },
    theme() {
      return this.$store.state.settings.theme;
      return this.$store.state.settings.theme
    }
  },
  watch: {
@@ -76,18 +76,18 @@
      return route.path === this.$route.path
    },
    activeStyle(tag) {
      if (!this.isActive(tag)) return {};
      if (!this.isActive(tag)) return {}
      return {
        "background-color": this.theme,
        "border-color": this.theme
      };
      }
    },
    isAffix(tag) {
      return tag.meta && tag.meta.affix
    },
    isFirstView() {
      try {
        return this.selectedTag.fullPath === this.visitedViews[1].fullPath || this.selectedTag.fullPath === '/index'
        return this.selectedTag.fullPath === '/index' || this.selectedTag.fullPath === this.visitedViews[1].fullPath
      } catch (err) {
        return false
      }
@@ -134,7 +134,6 @@
      if (name) {
        this.$store.dispatch('tagsView/addView', this.$route)
      }
      return false
    },
    moveToCurrentTag() {
      const tags = this.$refs.tag
@@ -152,7 +151,10 @@
      })
    },
    refreshSelectedTag(view) {
      this.$tab.refreshPage(view);
      this.$tab.refreshPage(view)
      if (this.$route.meta.link) {
        this.$store.dispatch('tagsView/delIframeView', this.$route)
      }
    },
    closeSelectedTag(view) {
      this.$tab.closePage(view).then(({ visitedViews }) => {
@@ -176,7 +178,7 @@
      })
    },
    closeOthersTags() {
      this.$router.push(this.selectedTag).catch(()=>{});
      this.$router.push(this.selectedTag.fullPath).catch(()=>{})
      this.$tab.closeOtherPage(this.selectedTag).then(() => {
        this.moveToCurrentTag()
      })