From 4f1728a730b2cf93e9e9f8cfade46a0559e34287 Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@163.com>
Date: 星期二, 14 五月 2024 15:03:43 +0800
Subject: [PATCH] #

---
 src/pages/left/index.jsx |   15 +++++++--------
 1 files changed, 7 insertions(+), 8 deletions(-)

diff --git a/src/pages/left/index.jsx b/src/pages/left/index.jsx
index 7977331..27b8158 100644
--- a/src/pages/left/index.jsx
+++ b/src/pages/left/index.jsx
@@ -6,19 +6,18 @@
 import Panel from '@/components/panel';
 
 import StockCharts from './components/stock-charts';
-import TaskCharts from './components/task-charts';
-// import AgvCharts from './components/agv-charts';
+import LocCharts from './components/loc-charts';
+import AgvCharts from './components/agv-charts';
 import CapacityCharts from './components/capacity-charts';
 
 const Left = () => {
     const [isExpanded, setIsExpanded] = useState(true);
-    // 瀹氫箟鍔ㄧ敾灞炴��
+
     const containerAnimation = useSpring({
         transform: isExpanded ? 'translate(0%)' : 'translateX(-100%)',
         config: { precision: 0.01 },
     });
 
-    // 鍒囨崲瀹瑰櫒鐘舵��
     const toggleContainer = () => {
         setIsExpanded(!isExpanded);
     };
@@ -29,16 +28,16 @@
             }}
             className={`absolute top-2 left-2 bottom-2 w-[280px] ${styles.panel}`}
         >
-            <div className="h-full overflow-auto">
+            <div className="h-full overflow-hidden">
                 <Panel title="搴撴埧鎯呭喌">
                     <StockCharts />
                 </Panel>
                 <Panel title="搴撳瓨绫诲瀷">
-                    <TaskCharts />
+                    <LocCharts />
                 </Panel>
                 <Panel title="AGV淇℃伅">
-                    {/* <AgvCharts /> */}
-                    <CapacityCharts />
+                    <AgvCharts />
+                    {/* <CapacityCharts /> */}
                 </Panel>
             </div>
             <div

--
Gitblit v1.9.1