From f3043891f23e398f19c43bb619157792f5370729 Mon Sep 17 00:00:00 2001 From: hmo Date: Tue, 28 Jul 2026 11:53:33 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=9B=AF=E7=9B=98=E5=88=B7=E6=96=B0?= =?UTF-8?q?=E9=97=B4=E9=9A=94=E7=BB=9F=E4=B8=8060s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/index.html b/static/index.html index 464c3131..ea89632e 100644 --- a/static/index.html +++ b/static/index.html @@ -1655,8 +1655,8 @@ async function renderWatch() { } el.innerHTML = html; - // 自动刷新:每30秒 - watchTimer = setInterval(renderWatch, 30000); + // 自动刷新:每60秒 + watchTimer = setInterval(renderWatch, 60000); } catch(e) { el.innerHTML = '
加载失败: ' + e.message + '
'; watchTimer = setInterval(renderWatch, 60000);