From 5081d75bf7e8720d075f21a81f056d18c8f8383d Mon Sep 17 00:00:00 2001 From: hmo Date: Wed, 29 Jul 2026 23:26:38 +0800 Subject: [PATCH] =?UTF-8?q?ui:=20=E5=85=A8=E5=8F=82=E4=B8=8E=E5=88=97?= =?UTF-8?q?=E6=98=BE=E7=A4=BAMC=E6=A0=87=E5=87=86=E5=B7=AE(=C2=B1=CF=83)?= =?UTF-8?q?=E2=80=94=E2=80=94=CF=83=E5=A4=A7=3D=E8=BF=90=E6=B0=94=E6=88=90?= =?UTF-8?q?=E5=88=86=E5=A4=A7,=CF=83=E5=B0=8F=3D=E7=9C=9F=E5=AE=9E?= =?UTF-8?q?=E5=8A=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/index.html b/static/index.html index 77095be1..578f9647 100644 --- a/static/index.html +++ b/static/index.html @@ -2109,7 +2109,7 @@ function renderStrategyTable(strategies) { '' + (st.sizing_slots ? st.sizing_slots + '仓' : '10仓') + '' + cell('composite', s._composite, v => v, 'font-bold text-amber-300') + cell('universality_score', (st.universality || {}).score, v => v + '/' + (st.universality || {}).months + '月') + - cell('total_return_pct', (st.portfolio_full || {}).total_return_pct, v => v + '%', 'font-bold text-amber-300') + + cell('total_return_pct', (st.portfolio_full || {}).total_return_pct, v => v + '%' + ((st.portfolio_full||{}).std ? '±' + (st.portfolio_full||{}).std + '' : ''), 'font-bold text-amber-300') + cell('total_return_pct', pf.total_return_pct, v => v + '%', retCls + ' ' + hl(pf.total_return_pct, best.total_return_pct)) + cell('capital_final', pf.capital_final, v => '¥' + (v/10000).toFixed(0) + '万') + cell('cagr_pct', pf.cagr_pct, v => v + '%', hl(pf.cagr_pct, best.cagr_pct)) +