fix: 今日统计数字改用常规字体,去掉发光效果

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
dekun
2026-07-04 23:16:22 +08:00
parent 9deb58a38a
commit 65b911994c
3 changed files with 20 additions and 7 deletions
+2 -2
View File
@@ -2150,13 +2150,13 @@
${cell("今日开仓", String(Number(t.open_count) || 0), "含未平", "")}
${cell("今日平仓", String(Number(t.closed_count) || 0), "", "")}
${cell("持有仓位", String(Number(t.open_position_count) || 0), "", "")}
${cell("盈利", String(winN), winSub, "pnl-pos")}
${cell("盈利", String(winN), winSub, winN > 0 ? "pnl-pos" : "")}
${cell("亏损", String(lossN), lossSub, lossN > 0 ? "pnl-neg" : "")}
${cell(
"总浮盈亏",
esc(pnlSigned(floatVal, 2)) + "U",
"",
pnlCls(floatVal)
Math.abs(floatVal) > 1e-9 ? pnlCls(floatVal) : ""
)}
</div>
</div>