From 5667c89943707a3cd5494697de748b132b6e102e Mon Sep 17 00:00:00 2001 From: hmo Date: Fri, 24 Jul 2026 12:29:54 +0800 Subject: [PATCH] =?UTF-8?q?fix(ui):=20=E4=B9=B0=E5=85=A5=E5=8C=BA=E6=98=BE?= =?UTF-8?q?=E7=A4=BA2=E4=BD=8D=E5=B0=8F=E6=95=B0=EF=BC=885.96~6.02?= =?UTF-8?q?=E4=B8=8D=E5=86=8D=E8=A2=ABround=E6=88=906.0~6.0=EF=BC=89?= 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 2213a7d8..93e7fff2 100644 --- a/static/index.html +++ b/static/index.html @@ -1546,7 +1546,7 @@ async function renderWatch() { const shares = s.shares || 0; const posPct = s.position_pct || 0; - const buyZone = (el_ && eh_) ? el_.toFixed(1) + '~' + eh_.toFixed(1) : '—'; + const buyZone = (el_ && eh_) ? el_.toFixed(2) + '~' + eh_.toFixed(2) : '—'; const sltp = (sl_ || tp_) ? '损' + (sl_||'—') + '/盈' + (tp_||'—') : '—'; const posDisplay = (isRec && s.suggested_position_pct) ? '建议' + s.suggested_position_pct + '%'