From 0c6473bcff72275f79cbc14843937ed8b26c6801 Mon Sep 17 00:00:00 2001
From: loulijun2021 <1694218219@qq.com>
Date: 星期三, 04 一月 2023 16:41:03 +0800
Subject: [PATCH] 1.优化列展示功能
---
src/layout/components/TagsView/index.vue | 12 +++++++-----
1 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/src/layout/components/TagsView/index.vue b/src/layout/components/TagsView/index.vue
index 89b1996..b173a80 100644
--- a/src/layout/components/TagsView/index.vue
+++ b/src/layout/components/TagsView/index.vue
@@ -9,6 +9,7 @@
:to="{ path: tag.path, query: tag.query, fullPath: tag.fullPath }"
tag="span"
class="tags-view-item"
+ :style="{background:isActive(tag)?$store.state.settings.theme:'',border:isActive(tag)?'1px solid'+$store.state.settings.theme:''}"
@click.middle.native="!isAffix(tag)?closeSelectedTag(tag):''"
@contextmenu.prevent.native="openMenu(tag,$event)"
>
@@ -62,10 +63,11 @@
},
computed: {
visitedViews() {
- if (this.$store.state.tagsView.visitedViews.length > 10) {
- // eslint-disable-next-line vue/no-side-effects-in-computed-properties
- this.dialogVisible = true
- }
+ // 鏆傛椂鍙栨秷鍗佷釜鏍囩椤甸檺鍒舵彁绀�
+ // 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() {
@@ -263,7 +265,7 @@
}
</script>
-<style lang="scss" scoped>
+<style lang="scss">
$main_color: #42b983;
.tags-view-container {
height: 34px;
--
Gitblit v1.9.3