From 6e0ed2301272b6b0167d793bcb03f856ce00537b Mon Sep 17 00:00:00 2001 From: qinglong Date: Sat, 13 Jun 2026 18:49:49 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=A1=B5=E9=9D=A2=20HTML=20=E5=8A=A0?= =?UTF-8?q?=E8=BD=BD=E5=8A=A0=20=3Ft=3D=20=E7=BC=93=E5=AD=98=E7=A0=B4?= =?UTF-8?q?=E5=9D=8F=20+=20app.js=20=E7=89=88=E6=9C=AC=E5=8F=B7=200704?= =?UTF-8?q?=E2=86=920705?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/web_panel/home.html | 2 +- static/web_panel/js/app.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/static/web_panel/home.html b/static/web_panel/home.html index 78791b9..e54b845 100644 --- a/static/web_panel/home.html +++ b/static/web_panel/home.html @@ -76,6 +76,6 @@ - + diff --git a/static/web_panel/js/app.js b/static/web_panel/js/app.js index b632bf8..5dc10b9 100644 --- a/static/web_panel/js/app.js +++ b/static/web_panel/js/app.js @@ -96,7 +96,7 @@ async function loadPage(pageName) { if(window[modName] && window[modName].destroy) { try { window[modName].destroy(); } catch(e){} } try { - var resp = await fetch('./static/pages/'+pageName+'.html'); + var resp = await fetch('./static/pages/'+pageName+'.html?t='+Date.now()); if(!resp.ok) throw new Error('404'); var html = await resp.text();