From 137312acdcf1bfdca6457269d1c679ce1b9828e4 Mon Sep 17 00:00:00 2001 From: ZLY Date: Thu, 11 Sep 2025 11:56:09 +0800 Subject: [PATCH] =?UTF-8?q?fix(dashboard):=20=E4=BF=AE=E5=A4=8D=E5=B7=A5?= =?UTF-8?q?=E4=BD=9C=E5=8F=B0=E9=A6=96=E9=A1=B5=E5=8A=A0=E8=BD=BD=E7=8A=B6?= =?UTF-8?q?=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/dashboard/workplace/overview.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/dashboard/workplace/overview.tsx b/src/pages/dashboard/workplace/overview.tsx index 7a5eb42..78ee815 100644 --- a/src/pages/dashboard/workplace/overview.tsx +++ b/src/pages/dashboard/workplace/overview.tsx @@ -67,6 +67,7 @@ function Overview() { setLoading(true); const res: any = await getOverviewHome(); if (res.code === 200) setData(res.data); + setLoading(false); };