diff --git a/frontend/src/pages/Dashboard.tsx b/frontend/src/pages/Dashboard.tsx index c043d41..5adb9c9 100644 --- a/frontend/src/pages/Dashboard.tsx +++ b/frontend/src/pages/Dashboard.tsx @@ -405,7 +405,8 @@ function StockList({ title, rows, mode }: { title: string; rows: MarketSnapshotR ) : mode === 'active' ? ( <> -
{fmtPrice(r.turnover_rate, 1)}%
+ {/* overview 的 turnover_rate 为小数制, 需 ×100 转百分数显示 */} +
{fmtPrice(r.turnover_rate != null ? r.turnover_rate * 100 : null, 1)}%
{fmtStockPct(r.change_pct)}
) : (