From d9364ce5048d21c21cf2a303e86c5e0422696fac Mon Sep 17 00:00:00 2001 From: hzm <934585316@qq.com> Date: Fri, 6 Mar 2026 08:59:55 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E7=BB=BC=E5=90=88=E6=B6=A8=E5=B9=85?= =?UTF-8?q?=E6=94=B9=E5=90=8D=E4=BC=B0=E7=AE=97=E6=94=B6=E7=9B=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/components/Announcement.jsx | 2 +- app/components/MobileFundTable.jsx | 4 ++-- app/components/PcFundTable.jsx | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/components/Announcement.jsx b/app/components/Announcement.jsx index a670587..e06c6e5 100644 --- a/app/components/Announcement.jsx +++ b/app/components/Announcement.jsx @@ -69,7 +69,7 @@ export default function Announcement() {
1. 改进拍照识别基金准确度。
2. 拍照导入支持选择分组,识别持仓金额、持仓收益。
3. 个性化设置新增展示完整基金名称。
-4. 表格列新增综合涨幅(估值涨幅+持有收益涨幅)。
+4. 表格列新增估算收益(估值涨幅+持有收益涨幅)。
以下功能将会在下一个版本上线:1. 大盘走势数据。
2. 关联板块。
diff --git a/app/components/MobileFundTable.jsx b/app/components/MobileFundTable.jsx index 6e03df7..e47cd62 100644 --- a/app/components/MobileFundTable.jsx +++ b/app/components/MobileFundTable.jsx @@ -40,7 +40,7 @@ const MOBILE_COLUMN_HEADERS = { estimateNav: '估算净值', yesterdayChangePercent: '昨日涨幅', estimateChangePercent: '估值涨幅', - totalChangePercent: '综合涨幅', + totalChangePercent: '估算收益', todayProfit: '当日收益', holdingProfit: '持有收益', }; @@ -528,7 +528,7 @@ export default function MobileFundTable({ }, { accessorKey: 'totalChangePercent', - header: '综合涨幅', + header: '估算收益', cell: (info) => { const original = info.row.original || {}; const estimateValue = original.estimateChangeValue; diff --git a/app/components/PcFundTable.jsx b/app/components/PcFundTable.jsx index 655b5d0..bd8cb36 100644 --- a/app/components/PcFundTable.jsx +++ b/app/components/PcFundTable.jsx @@ -42,7 +42,7 @@ const COLUMN_HEADERS = { estimateNav: '估算净值', yesterdayChangePercent: '昨日涨幅', estimateChangePercent: '估值涨幅', - totalChangePercent: '综合涨幅', + totalChangePercent: '估算收益', holdingAmount: '持仓金额', todayProfit: '当日收益', holdingProfit: '持有收益', @@ -516,7 +516,7 @@ export default function PcFundTable({ }, { accessorKey: 'totalChangePercent', - header: '综合涨幅', + header: '估算收益', size: 135, minSize: 100, cell: (info) => {