diff --git a/static/index.html b/static/index.html
index 5cca8ab0..225a244f 100644
--- a/static/index.html
+++ b/static/index.html
@@ -2205,8 +2205,8 @@ function renderResearch() {
'
' +
'' +
'' +
- '
📊 策略评估 — AB路线每日研究成果(LLM主导研究,产出策略默认不激活待审查)
' +
- '
' +
+ '
📊 策略评估 — 到期策略自动评估(买入区/止损/止盈/时间准确性)
' +
+ '
' +
'
';
// 首次渲染即加载策略列表(无子Tab切换)。
// 2026-08-15 修复:不能在此直接 loadStrategyList()——此时 btPeriod.value 还是初始默认 '1m',
@@ -2223,11 +2223,10 @@ function renderResearch() {
if (!isStr) loadEvoLog();
};
window.loadEvoLog = function() {
- const el = document.getElementById('evo-log-list');
+ const el = document.getElementById('effectiveness-list');
if (!el) return;
- fetch('/api/research/log').then(r => r.json()).then(data => {
- const rows = data.log || [];
- if (!rows.length) { el.innerHTML = '暂无研究记录(每日AB研究任务运行后出现)
'; return; }
+ fetch('/api/research/effectiveness/summary').then(r => r.json()).then(data => {
+ if (!data || !data.length) { el.innerHTML = '暂无评估数据(策略到期后自动生成)
'; return; }
let html = '' +
'| 日期 | 市场/温区 | ' +
'发现薄弱点 | 尝试 | ' +