forked from drone/command-center-dashboard

罗广辉
2025-04-21 2800fa4f32f3900509cb4d6eefaf2bfaf54efdd7
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"
@@ -40,6 +40,7 @@
import tc from '@/assets/images/rSide/tc.png'
import tc1 from '@/assets/images/rSide/tc1.png'
import cesiumOperation from '@/utils/cesium-tsa'
import { ElMessage } from 'element-plus'
let logIndex = ref(3)
const enterHover = value => {
@@ -49,6 +50,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 => {
@@ -59,6 +62,7 @@
      activeIndex.value = activeIndex.value === 1 ? null : value
   }
   if (value === 2) {
      ElMessage.warning('加急开发中...')
      activeIndex.value = activeIndex.value === 2 ? null : value
   }
}