From 686a5f87f6edd5b6f28b9f12ebff75738ba46b74 Mon Sep 17 00:00:00 2001
From: Gary Gu <garygu@Garydebijibendiannao.local>
Date: Tue, 03 Jun 2025 11:05:36 +0800
Subject: [PATCH] fix: 修改参数逻辑,替换为自有接口

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

diff --git a/src/views/Home.vue b/src/views/Home.vue
index 7296437..0c08726 100644
--- a/src/views/Home.vue
+++ b/src/views/Home.vue
@@ -98,7 +98,7 @@
       >
       </div>
       <div class="chart-container" :style="sectionStyle">
-        <Gantt />
+        <Gantt :selected-id="selectedId" />
       </div>
     </div>
   </div>
@@ -803,9 +803,8 @@
     }
 
     .el-scrollbar__wrap {
-      overflow: hidden;
-      margin-bottom: 0px !important;
-      margin-right: 0px !important;
+      overflow-x: hidden;
+      overflow-y: scroll;
     }
   }
 </style>

--
Gitblit v1.9.3