From 6ab8e4b308bb3e053c44efdd403eee07f2a30fe0 Mon Sep 17 00:00:00 2001 From: claw_bot Date: Tue, 10 Mar 2026 08:43:51 +0000 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E7=BB=84=E5=90=88=E6=98=8E?= =?UTF-8?q?=E7=BB=86=E9=A1=B5=EF=BC=9A=E6=9B=BF=E6=8D=A2=E5=8F=98=E5=8A=A8?= =?UTF-8?q?=E9=A2=9D/=E5=81=8F=E7=A6=BB=E6=AF=94=E4=BE=8B=E4=B8=BA?= =?UTF-8?q?=E6=8C=81=E4=BB=93=E6=88=90=E6=9C=AC/=E6=8C=81=E4=BB=93?= =?UTF-8?q?=E7=9B=88=E4=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/detail/detail.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pages/detail/detail.vue b/pages/detail/detail.vue index 3f6c23e..c500f52 100644 --- a/pages/detail/detail.vue +++ b/pages/detail/detail.vue @@ -92,15 +92,15 @@ - 变动额 - - {{ (item.changeAmount || 0) >= 0 ? '+' : '' }}{{ getCurrencySymbol(portfolioData.currency) }}{{ (item.changeAmount || 0).toLocaleString('zh-CN', { minimumFractionDigits: 2, maximumFractionDigits: 2 }) }} + 持仓成本 + + {{ getCurrencySymbol(portfolioData.currency) }}{{ (item.averagePrice || 0).toLocaleString('zh-CN', { minimumFractionDigits: 2, maximumFractionDigits: 2 }) }} - 偏离比例 - - {{ (item.deviationRatio || 0) >= 0 ? '+' : '' }}{{ (item.deviationRatio || 0).toFixed(2) }}% + 持仓盈亏 + + {{ (item.profit || 0) >= 0 ? '+' : '' }}{{ getCurrencySymbol(portfolioData.currency) }}{{ (item.profit || 0).toLocaleString('zh-CN', { minimumFractionDigits: 2, maximumFractionDigits: 2 }) }}