feat: 综合涨幅改名估算收益
This commit is contained in:
@@ -69,7 +69,7 @@ export default function Announcement() {
|
|||||||
<p>1. 改进拍照识别基金准确度。</p>
|
<p>1. 改进拍照识别基金准确度。</p>
|
||||||
<p>2. 拍照导入支持选择分组,识别持仓金额、持仓收益。</p>
|
<p>2. 拍照导入支持选择分组,识别持仓金额、持仓收益。</p>
|
||||||
<p>3. 个性化设置新增展示完整基金名称。</p>
|
<p>3. 个性化设置新增展示完整基金名称。</p>
|
||||||
<p>4. 表格列新增综合涨幅(估值涨幅+持有收益涨幅)。</p>
|
<p>4. 表格列新增估算收益(估值涨幅+持有收益涨幅)。</p>
|
||||||
以下功能将会在下一个版本上线:
|
以下功能将会在下一个版本上线:
|
||||||
<p>1. 大盘走势数据。</p>
|
<p>1. 大盘走势数据。</p>
|
||||||
<p>2. 关联板块。</p>
|
<p>2. 关联板块。</p>
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ const MOBILE_COLUMN_HEADERS = {
|
|||||||
estimateNav: '估算净值',
|
estimateNav: '估算净值',
|
||||||
yesterdayChangePercent: '昨日涨幅',
|
yesterdayChangePercent: '昨日涨幅',
|
||||||
estimateChangePercent: '估值涨幅',
|
estimateChangePercent: '估值涨幅',
|
||||||
totalChangePercent: '综合涨幅',
|
totalChangePercent: '估算收益',
|
||||||
todayProfit: '当日收益',
|
todayProfit: '当日收益',
|
||||||
holdingProfit: '持有收益',
|
holdingProfit: '持有收益',
|
||||||
};
|
};
|
||||||
@@ -528,7 +528,7 @@ export default function MobileFundTable({
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
accessorKey: 'totalChangePercent',
|
accessorKey: 'totalChangePercent',
|
||||||
header: '综合涨幅',
|
header: '估算收益',
|
||||||
cell: (info) => {
|
cell: (info) => {
|
||||||
const original = info.row.original || {};
|
const original = info.row.original || {};
|
||||||
const estimateValue = original.estimateChangeValue;
|
const estimateValue = original.estimateChangeValue;
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ const COLUMN_HEADERS = {
|
|||||||
estimateNav: '估算净值',
|
estimateNav: '估算净值',
|
||||||
yesterdayChangePercent: '昨日涨幅',
|
yesterdayChangePercent: '昨日涨幅',
|
||||||
estimateChangePercent: '估值涨幅',
|
estimateChangePercent: '估值涨幅',
|
||||||
totalChangePercent: '综合涨幅',
|
totalChangePercent: '估算收益',
|
||||||
holdingAmount: '持仓金额',
|
holdingAmount: '持仓金额',
|
||||||
todayProfit: '当日收益',
|
todayProfit: '当日收益',
|
||||||
holdingProfit: '持有收益',
|
holdingProfit: '持有收益',
|
||||||
@@ -516,7 +516,7 @@ export default function PcFundTable({
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
accessorKey: 'totalChangePercent',
|
accessorKey: 'totalChangePercent',
|
||||||
header: '综合涨幅',
|
header: '估算收益',
|
||||||
size: 135,
|
size: 135,
|
||||||
minSize: 100,
|
minSize: 100,
|
||||||
cell: (info) => {
|
cell: (info) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user