From be597042c830b0916898e40a9610fafc9e036ea3 Mon Sep 17 00:00:00 2001 From: li Date: Wed, 11 Feb 2026 16:41:43 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=A4=A7=E5=8E=85=E4=BD=99=E9=A2=9DK?= =?UTF-8?q?=E6=A0=BC=E5=BC=8F=E5=8C=96=20+=20=E8=B4=A7=E5=B8=81=E7=AC=A6?= =?UTF-8?q?=E5=8F=B7=E6=94=B9=E4=B8=BA=E8=B6=8A=E5=8D=97=E7=9B=BE=E2=82=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 左上角余额用 $fk() 包裹,≥1000显示为K格式 - 货币符号从 ¥ 改为 ₫(越南盾) --- pages/index.vue | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pages/index.vue b/pages/index.vue index 4b86054..d722720 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -13,8 +13,8 @@ {{ userInfo.username || $lang.guest }} - - {{ userInfo.money || '0.00' }} + + {{ $fk(userInfo.money) || '0.00' }} @@ -387,6 +387,11 @@ export default { align-items: center; gap: 5px; + .currency-symbol { + color: #f4c46f; + font-size: 14px; + font-weight: bold; + } .balance-text { color: #f4c46f; font-size: 12px;