From f1d0a81afb0e6a238044c62ec11b8f7db7f4152a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BD=E5=87=A4=E5=90=89?= Date: Wed, 2 Jul 2025 15:19:38 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E6=96=AD=E7=BA=BF=E9=87=8D=E8=BF=9E?= =?UTF-8?q?=E6=96=87=E5=AD=97=E6=8F=8F=E8=BF=B0=E4=B8=8D=E6=AD=A3=E7=A1=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/system/NetReconnection.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/system/NetReconnection.vue b/src/components/system/NetReconnection.vue index b0e476b..82290f8 100644 --- a/src/components/system/NetReconnection.vue +++ b/src/components/system/NetReconnection.vue @@ -11,7 +11,7 @@ const timer = ref() const websocketConnected = ref(true) const countdownToReconnection = () => { - startTimer(30 * 1000, (times: string) => { + startTimer(10 * 1000, (times: string) => { if (times === '0') { router.push('/login') return @@ -36,7 +36,7 @@ watchEffect(() => {

- 正在重连中 {{ timer }} + {{ timer }}秒后重新链接

请稍候,系统正在尝试重新连接网络...