From 942e784e3127a2234a3a66c761d9876a01dd7dcc Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Wed, 16 Apr 2025 20:23:10 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

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

diff --git a/src/views/Home/RSide.vue b/src/views/Home/RSide.vue
index be82d71..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 => {

--
Gitblit v1.9.3