From 83c29f8540d111d51ca79ba13f85d8329b172da1 Mon Sep 17 00:00:00 2001 From: hailin Date: Sat, 31 Jan 2026 21:46:26 -0800 Subject: [PATCH] =?UTF-8?q?fix(c2c):=20=E8=AE=A2=E5=8D=95=E8=AF=A6?= =?UTF-8?q?=E6=83=85=E5=8D=95=E4=BB=B7=E5=92=8C=E6=80=BB=E9=87=91=E9=A2=9D?= =?UTF-8?q?=E6=A0=87=E7=AD=BE=E6=94=B9=E4=B8=BA=E7=BB=BF=E7=A7=AF=E5=88=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 单价: "积分值" → "绿积分/积分值" - 总金额: "积分值" → "绿积分"(买方实际支付的绿积分数量) Co-Authored-By: Claude Opus 4.5 --- .../lib/presentation/pages/c2c/c2c_order_detail_page.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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!),