From f1e4e5843ff9ae37ccecd0ea391911f67de0e50d Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Sat, 29 Mar 2025 16:02:53 +0800
Subject: [PATCH] feat: 机巢点击交互

---
 src/views/Home/Home.vue |   47 +++++++++++------------------------------------
 1 files changed, 11 insertions(+), 36 deletions(-)

diff --git a/src/views/Home/Home.vue b/src/views/Home/Home.vue
index 19d6753..6139619 100644
--- a/src/views/Home/Home.vue
+++ b/src/views/Home/Home.vue
@@ -1,43 +1,18 @@
 <template>
-  <div class="warp">
-    <HomeLeft></HomeLeft>
-    <!-- <div>中间搜索</div> -->
-    <HomeRight></HomeRight>
-  </div>
+  <HomeLeft></HomeLeft>
+  <!-- <div>中间搜索</div> -->
+  <HomeRight></HomeRight>
+  <SearchBox />
 </template>
 
-<script>
+<script setup>
 import HomeRight from './components/HomeRight/HomeRight.vue';
 import HomeLeft from '@/views/Home/components/HomeLeft/HomeLeft.vue';
+import SearchBox from '@/views/Home/SearchBox.vue';
+import { useAggregation } from '@/views/Home/useAggregation';
+import MapPopUpBox from '@/views/Home/MapPopUpBox.vue';
+import { render } from 'vue';
 
-export default {
-  components: {
-    HomeLeft,
-    HomeRight,
-  },
-  name: 'index',
-  provide() {
-    return {
-      index: this,
-    };
-  },
-  computed: {},
-  props: [],
-  methods: {},
-  mounted() {},
-};
+
+useAggregation()
 </script>
-<style scoped lang="scss">
-.page-home {
-  height: 100%;
-  width: 100%;
-  background-size: 100% 100%;
-  background-repeat: no-repeat;
-  font-family: YouSheBiaoTiHei, YouSheBiaoTiHei;
-  position: relative;
-  .warp {
-    display: flex;
-    justify-content: space-between;
-  }
-}
-</style>

--
Gitblit v1.9.3