feat: 涨跌幅名称调整

This commit is contained in:
hzm
2026-03-06 08:28:36 +08:00
parent aac5c5003a
commit 44dfb944c7
4 changed files with 15 additions and 15 deletions

View File

@@ -37,8 +37,8 @@ const MOBILE_NON_FROZEN_COLUMN_IDS = [
const MOBILE_COLUMN_HEADERS = {
latestNav: '最新净值',
estimateNav: '估算净值',
yesterdayChangePercent: '昨日涨幅',
estimateChangePercent: '估值涨幅',
yesterdayChangePercent: '昨日涨幅',
estimateChangePercent: '估值涨幅',
todayProfit: '当日收益',
holdingProfit: '持有收益',
};
@@ -485,7 +485,7 @@ export default function MobileFundTable({
},
{
accessorKey: 'yesterdayChangePercent',
header: '昨日涨幅',
header: '昨日涨幅',
cell: (info) => {
const original = info.row.original || {};
const value = original.yesterdayChangeValue;
@@ -504,7 +504,7 @@ export default function MobileFundTable({
},
{
accessorKey: 'estimateChangePercent',
header: '估值涨幅',
header: '估值涨幅',
cell: (info) => {
const original = info.row.original || {};
const value = original.estimateChangeValue;