From 9ff0952f81f6046b6ef4346743aaa7b5d78976d5 Mon Sep 17 00:00:00 2001 From: WindowBird <13870814+windows-bird@user.noreply.gitee.com> Date: Mon, 18 Aug 2025 14:47:41 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B6=E6=94=AF=E6=98=8E=E7=BB=86=E7=95=8C?= =?UTF-8?q?=E9=9D=A2=EF=BC=8Ccard=E7=9A=84=E7=BB=84=E4=BB=B6=E6=8A=BD?= =?UTF-8?q?=E7=A6=BB1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/cashFlowCard/cashFlowCard.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/cashFlowCard/cashFlowCard.vue b/components/cashFlowCard/cashFlowCard.vue index 73ffa21..8f4343c 100644 --- a/components/cashFlowCard/cashFlowCard.vue +++ b/components/cashFlowCard/cashFlowCard.vue @@ -25,7 +25,7 @@ - {{ item.amount >= 0 ? '+' : '' }}¥{{ Math.abs(item.amount).toFixed(2) }} + {{ item.amount >= 0 ? '+' : '-' }}¥{{ Math.abs(item.amount).toFixed(2) }} @@ -198,6 +198,7 @@ export default { color: #333; text-align: right; padding-right: 20rpx; + white-space: nowrap; &.positive { color: #ff803a;