From bdbef0fbde20317d19bfc6d3473dabb10fb3fb3b Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Sat, 19 Apr 2025 15:41:21 +0800
Subject: [PATCH] feat: 修改任务事件概况的饼状图颜色

---
 src/views/Home/RSide.vue |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/views/Home/RSide.vue b/src/views/Home/RSide.vue
index 6fc583a..7e41a56 100644
--- a/src/views/Home/RSide.vue
+++ b/src/views/Home/RSide.vue
@@ -1,5 +1,5 @@
 <template>
-	<div class="ai-chat">
+	<div class="ai-chat" v-show="isHideBottomIcon">
 		<el-popover placement="bottom" :visible="visible" :width="200" trigger="click">
 			<template #reference>
 				<div class="chat" id="chatID" v-drag:chatID @mousedown="handleMouseDown" @mouseup="handleMouseUp" />
@@ -11,7 +11,7 @@
 		</el-popover>
 		<img class="chat-bottom" src="../../assets/images/chat-bottom.png" alt="" />
 	</div>
-	<div class="r-side">
+	<div class="r-side" v-show="isHideBottomIcon">
 		<img
 			v-for="(item, index) in images"
 			:key="index"
@@ -49,6 +49,8 @@
 
 const store = useStore()
 const currentAreaPosition = computed(() => store.state.home.currentAreaPosition)
+// 事件概况 展开隐藏
+const isHideBottomIcon = computed(() => store.state.common.isHideBottomIcon)
 
 let activeIndex = ref(null)
 const activeChange = value => {
@@ -60,7 +62,6 @@
 	}
 	if (value === 2) {
 		activeIndex.value = activeIndex.value === 2 ? null : value
-		console.log('22222')
 	}
 }
 const visible = ref(false)

--
Gitblit v1.9.3