fix(trading): 交易记录金额单位从USDT改为积分值

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-01-20 02:18:40 -08:00
parent b1d8561ca5
commit 0fddd3164a
1 changed files with 1 additions and 1 deletions

View File

@ -286,7 +286,7 @@ class _TradingRecordsPageState extends ConsumerState<TradingRecordsPage> {
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
_buildInfoItem('已成交', '${_formatQuantity(order.filledQuantity)} / ${_formatQuantity(order.quantity)}'),
_buildInfoItem('金额', '${_formatPrice(order.totalAmount)} USDT'),
_buildInfoItem('金额', '${_formatPrice(order.totalAmount)} 积分值'),
],
),
const SizedBox(height: 8),