fix(c2c): 订单详情单价和总金额标签改为绿积分

- 单价: "积分值" → "绿积分/积分值"
- 总金额: "积分值" → "绿积分"(买方实际支付的绿积分数量)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-01-31 21:46:26 -08:00
parent 6ec829a804
commit 83c29f8540
1 changed files with 2 additions and 2 deletions

View File

@ -336,9 +336,9 @@ class _C2cOrderDetailPageState extends ConsumerState<C2cOrderDetailPage> {
_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!),