diff --git a/frontend/mining-app/lib/presentation/pages/c2c/c2c_order_detail_page.dart b/frontend/mining-app/lib/presentation/pages/c2c/c2c_order_detail_page.dart index 7b080103..2655349a 100644 --- a/frontend/mining-app/lib/presentation/pages/c2c/c2c_order_detail_page.dart +++ b/frontend/mining-app/lib/presentation/pages/c2c/c2c_order_detail_page.dart @@ -336,9 +336,9 @@ class _C2cOrderDetailPageState extends ConsumerState { _buildInfoRow('卖方ID', order.makerAccountSequence, canCopy: true) else if (order.takerAccountSequence != null) _buildInfoRow('卖方ID', order.takerAccountSequence!, canCopy: true), - _buildInfoRow('单价', '${formatPrice(order.price)} 积分值'), + _buildInfoRow('单价', '${formatPrice(order.price)} 绿积分/积分值'), _buildInfoRow('数量', '${formatAmount(order.quantity)} 积分值'), - _buildInfoRow('总金额', '${formatAmount(order.totalAmount)} 积分值'), + _buildInfoRow('总金额', '${formatAmount(order.totalAmount)} 绿积分'), _buildInfoRow('创建时间', _formatDateTime(order.createdAt)), if (order.remark != null && order.remark!.isNotEmpty) _buildInfoRow('备注', order.remark!),