From 45b0e82432ec8d40db8a319c0d5b10414fa11aa3 Mon Sep 17 00:00:00 2001
From: 若依 <yzz_ivy@163.com>
Date: Thu, 08 Apr 2021 22:17:16 +0800
Subject: [PATCH] !58 取消了druid的wall配置 Merge pull request !58 from 啦啦啦少年/master
---
ruoyi-ui/src/layout/components/TagsView/index.vue | 7 +------
1 files changed, 1 insertions(+), 6 deletions(-)
diff --git a/ruoyi-ui/src/layout/components/TagsView/index.vue b/ruoyi-ui/src/layout/components/TagsView/index.vue
index 23eb8f0..c16a4c2 100644
--- a/ruoyi-ui/src/layout/components/TagsView/index.vue
+++ b/ruoyi-ui/src/layout/components/TagsView/index.vue
@@ -29,7 +29,6 @@
<script>
import ScrollPane from './ScrollPane'
import path from 'path'
-import Global from "@/layout/components/global.js";
export default {
components: { ScrollPane },
@@ -145,7 +144,6 @@
})
})
})
- Global.$emit("removeCache", "refreshSelectedTag", this.selectedTag);
},
closeSelectedTag(view) {
this.$store.dispatch('tagsView/delView', view).then(({ visitedViews }) => {
@@ -153,14 +151,12 @@
this.toLastView(visitedViews, view)
}
})
- Global.$emit("removeCache", "closeSelectedTag", view);
},
closeOthersTags() {
- this.$router.push(this.selectedTag)
+ this.$router.push(this.selectedTag).catch(()=>{});
this.$store.dispatch('tagsView/delOthersViews', this.selectedTag).then(() => {
this.moveToCurrentTag()
})
- Global.$emit("removeCache", "closeOthersTags", this.selectedTag);
},
closeAllTags(view) {
this.$store.dispatch('tagsView/delAllViews').then(({ visitedViews }) => {
@@ -169,7 +165,6 @@
}
this.toLastView(visitedViews, view)
})
- Global.$emit("removeCache", "closeAllTags");
},
toLastView(visitedViews, view) {
const latestView = visitedViews.slice(-1)[0]
--
Gitblit v1.9.3