From 2482b2d1a5caaa821dc5a0c60eca0f648131948e Mon Sep 17 00:00:00 2001
From: tony.cheng <chengmingwei_1984122@126.com>
Date: Wed, 04 Mar 2026 10:29:13 +0800
Subject: [PATCH] feat: 优化TabContainer组件,增强标签页功能和用户体验

---
 web-app/src/components/common/OutboundCallWidget.jsx |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/web-app/src/components/common/OutboundCallWidget.jsx b/web-app/src/components/common/OutboundCallWidget.jsx
index 33ed299..1a60f0c 100644
--- a/web-app/src/components/common/OutboundCallWidget.jsx
+++ b/web-app/src/components/common/OutboundCallWidget.jsx
@@ -21,7 +21,7 @@
 const OutboundCallWidget = ({ onSwitchTab, onRefreshData }) => {
   const { caseData } = useCaseData();
   const [isVisible, setIsVisible] = useState(false); // 默认隐藏
-  const [isMinimized, setIsMinimized] = useState(true);
+  const [isMinimized, setIsMinimized] = useState(false); // 默认展开(非最小化)
   const [calls, setCalls] = useState([]);
   const isMountedRef = useRef(true);
   

--
Gitblit v1.8.0