From 8288cd7579083fc357eae134532bf6006b797bad Mon Sep 17 00:00:00 2001 From: WrBug Date: Sat, 31 Jan 2026 21:12:49 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E7=A7=BB=E9=99=A4=E5=9B=9E=E6=B5=8B?= =?UTF-8?q?=E4=BA=A4=E6=98=93=E8=AE=B0=E5=BD=95=E7=9A=84=E6=89=8B=E7=BB=AD?= =?UTF-8?q?=E8=B4=B9=E5=88=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除手续费列,简化交易记录表格 - 手续费已包含在盈亏计算中,无需单独显示 --- frontend/src/pages/BacktestDetail.tsx | 7 ------- 1 file changed, 7 deletions(-) diff --git a/frontend/src/pages/BacktestDetail.tsx b/frontend/src/pages/BacktestDetail.tsx index f83504b..a2eab3e 100644 --- a/frontend/src/pages/BacktestDetail.tsx +++ b/frontend/src/pages/BacktestDetail.tsx @@ -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',