From 67419bcd1c475c7c40a8023d1f1f15531de57147 Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Fri, 28 Mar 2025 13:58:38 +0800
Subject: [PATCH] feat: 查询

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

diff --git a/src/views/Home/Home.vue b/src/views/Home/Home.vue
index 8c17d8f..efd6de6 100644
--- a/src/views/Home/Home.vue
+++ b/src/views/Home/Home.vue
@@ -1,22 +1,21 @@
 <template>
-    <HomeLeft></HomeLeft>
-    <!-- <div>中间搜索</div> -->
-    <HomeRight></HomeRight>
+  <HomeLeft></HomeLeft>
+  <!-- <div>中间搜索</div> -->
+  <HomeRight></HomeRight>
+
+  <SearchBox />
 </template>
 
 <script setup>
 import HomeRight from './components/HomeRight/HomeRight.vue';
 import HomeLeft from '@/views/Home/components/HomeLeft/HomeLeft.vue';
 import { getAggregation } from '@/views/Home/aggregation';
+import SearchBox from '@/views/Home/SearchBox.vue';
 
 onMounted(() => {
   nextTick(() => {
-    getAggregation()
-  })
-})
-
-
-
+    getAggregation();
+  });
+});
 </script>
-<style scoped lang="scss">
-</style>
+<style scoped lang="scss"></style>

--
Gitblit v1.9.3