From d71436544198b7b051115662fc9cf4b12ce0cda3 Mon Sep 17 00:00:00 2001
From: loulijun2021 <1694218219@qq.com>
Date: 星期二, 19 七月 2022 18:32:40 +0800
Subject: [PATCH] 1.修改bug
---
src/layout/components/TagsView/index.vue | 48 ++++++++++++++++++++++++++++++++++++++----------
1 files changed, 38 insertions(+), 10 deletions(-)
diff --git a/src/layout/components/TagsView/index.vue b/src/layout/components/TagsView/index.vue
index 7e6971b..89b1996 100644
--- a/src/layout/components/TagsView/index.vue
+++ b/src/layout/components/TagsView/index.vue
@@ -22,6 +22,23 @@
<li @click="closeOthersTags">鍏抽棴鍏朵粬</li>
<li @click="closeAllTags(selectedTag)">鍏抽棴鎵�鏈�</li>
</ul>
+
+ <el-dialog
+ title="鎻愮ず"
+ :visible.sync="dialogVisible"
+ width="500px"
+ :close-on-click-modal="false"
+ >
+ <div>
+ 鐜伴〉绛炬墦寮�瓒呰繃10涓紝璇峰叧闂叾瀹冩爣绛�
+ </div>
+ <span slot="footer" class="dialog-footer">
+ <div class="footerButton">
+ <el-button @click="dialogVisibleCancel">杩斿洖</el-button>
+ </div>
+ </span>
+ </el-dialog>
+
</div>
</template>
@@ -39,11 +56,16 @@
top: 0,
left: 0,
selectedTag: {},
- affixTags: []
+ affixTags: [],
+ dialogVisible: false
}
},
computed: {
visitedViews() {
+ if (this.$store.state.tagsView.visitedViews.length > 10) {
+ // eslint-disable-next-line vue/no-side-effects-in-computed-properties
+ this.dialogVisible = true
+ }
return this.$store.state.tagsView.visitedViews
},
routes() {
@@ -95,16 +117,22 @@
this.$store.state.tagsView.visitedViews = oldViews
}
},
+
+ // 瀵硅瘽妗嗚繑鍥�
+ dialogVisibleCancel() {
+ this.dialogVisible = false
+ },
+
isActive(route) {
- if (this.$route.path === '/scgl/sckbg') {
- const time = setInterval(() => {
- this.$nextTick(() => {
- $("input[name='produceCode']")[0].focus()
- $("input[name='WXproduceCode']")[0].focus()
- clearInterval(time)
- })
- })
- }
+ // if (this.$route.path === '/scgl/sckbg') {
+ // const time = setInterval(() => {
+ // this.$nextTick(() => {
+ // $("input[name='produceCode']")[0].focus()
+ // $("input[name='WXproduceCode']")[0].focus()
+ // clearInterval(time)
+ // })
+ // })
+ // }
return route.path === this.$route.path
},
isAffix(tag) {
--
Gitblit v1.9.3