feat: 移除回测交易记录的手续费列

- 移除手续费列,简化交易记录表格
- 手续费已包含在盈亏计算中,无需单独显示
This commit is contained in:
WrBug
2026-01-31 21:12:49 +08:00
parent 55da551971
commit 8288cd7579
-7
View File
@@ -232,13 +232,6 @@ const BacktestDetail: React.FC = () => {
width: 120,
render: (value: string) => formatUSDC(value)
},
{
title: t('backtest.fee') + ' (USDC)',
dataIndex: 'fee',
key: 'fee',
width: 120,
render: (value: string) => formatUSDC(value || '0')
},
{
title: t('backtest.profitLoss') + ' (USDC)',
dataIndex: 'profitLoss',