Browse Source

fix: 修复`query`路由传参模式下,点击标签页进行切换操作时会触发两次`router`跳转问题 (#642)

Styunlen 1 year ago
parent
commit
e404770718
2 changed files with 7 additions and 8 deletions
  1. 4 4
      src/layout/components/tag/index.scss
  2. 3 4
      src/layout/components/tag/index.vue

+ 4 - 4
src/layout/components/tag/index.scss

@@ -90,7 +90,7 @@
     }
   }
 
-  a {
+  .tag-title {
     padding: 0 4px;
     color: var(--el-text-color-primary);
     text-decoration: none;
@@ -204,7 +204,7 @@
     transform: translate(0, -50%);
   }
 
-  a {
+  .tag-title {
     color: var(--el-color-primary) !important;
   }
 }
@@ -247,7 +247,7 @@
 .card-in {
   color: var(--el-color-primary);
 
-  a {
+  .tag-title {
     color: var(--el-color-primary);
   }
 }
@@ -257,7 +257,7 @@
   color: #666;
   border: none;
 
-  a {
+  .tag-title {
     color: #666;
   }
 }

+ 3 - 4
src/layout/components/tag/index.vue

@@ -534,12 +534,11 @@ onBeforeUnmount(() => {
           @mouseleave.prevent="onMouseleave(index)"
           @click="tagOnClick(item)"
         >
-          <router-link
-            :to="item.path"
-            class="dark:!text-text_color_primary dark:hover:!text-primary"
+          <span
+            class="tag-title dark:!text-text_color_primary dark:hover:!text-primary"
           >
             {{ transformI18n(item.meta.title) }}
-          </router-link>
+          </span>
           <span
             v-if="
               iconIsActive(item, index) ||