From 38c84ad35fd3b47a8a96c955b72b982977f4b618 Mon Sep 17 00:00:00 2001 From: xxm Date: Tue, 18 Aug 2026 08:15:47 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E7=A0=94=E7=A9=B6Tab=E5=B1=80=E9=83=A8?= =?UTF-8?q?=E5=88=B7=E6=96=B0=E2=80=94=E2=80=94=E5=88=87=E5=9B=9E=E7=A0=94?= =?UTF-8?q?=E7=A9=B6Tab=E4=B8=8D=E6=95=B4=E9=A1=B5=E9=87=8D=E5=BB=BA?= =?UTF-8?q?=E9=AA=A8=E6=9E=B6(=E4=BF=9D=E7=95=99=E6=BB=9A=E5=8A=A8/?= =?UTF-8?q?=E5=B1=95=E5=BC=80),=E5=8F=AA=E5=88=B7=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/index.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/static/index.html b/static/index.html index a614d5bd..a7174151 100644 --- a/static/index.html +++ b/static/index.html @@ -2173,6 +2173,13 @@ function _renderVersionsHTML(md) { function renderResearch() { const el = document.getElementById('tab-research'); if (!el) return; + // 2026-08-18 局部刷新(老莫):已渲染过骨架则不再整页重建(保留滚动/展开),只刷新数据 + if (window._researchRendered) { + loadStrategyList(); + loadEvolutionBox(); + return; + } + window._researchRendered = true; el.innerHTML = '
' + '📋 策略研究' +