From 73a617b88cfac794955ed39447ab116c4577a9e8 Mon Sep 17 00:00:00 2001 From: hailin Date: Sun, 1 Feb 2026 00:57:30 -0800 Subject: [PATCH] =?UTF-8?q?fix(c2c):=20=E5=8D=95=E4=BB=B7=E5=92=8C?= =?UTF-8?q?=E6=80=BB=E9=87=91=E9=A2=9D=E5=8D=95=E4=BD=8D=E6=94=B9=E4=B8=BA?= =?UTF-8?q?=E7=BB=BF=E7=A7=AF=E5=88=86=EF=BC=8C=E5=BE=85=E4=BB=98=E6=AC=BE?= =?UTF-8?q?=E6=8F=90=E7=A4=BA=E6=94=B9=E4=B8=BA=E5=AF=B9=E6=96=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - C2C市场列表/接单弹窗中单价和总金额单位从"积分值"改为"绿积分" - 订单详情待付款倒计时提示改为"对方将在xx:xx内完成付款" Co-Authored-By: Claude Opus 4.5 --- .../lib/presentation/pages/c2c/c2c_market_page.dart | 8 ++++---- .../lib/presentation/pages/c2c/c2c_order_detail_page.dart | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/mining-app/lib/presentation/pages/c2c/c2c_market_page.dart b/frontend/mining-app/lib/presentation/pages/c2c/c2c_market_page.dart index 8b03f5c6..45284853 100644 --- a/frontend/mining-app/lib/presentation/pages/c2c/c2c_market_page.dart +++ b/frontend/mining-app/lib/presentation/pages/c2c/c2c_market_page.dart @@ -372,7 +372,7 @@ class _C2cMarketPageState extends ConsumerState Text('单价', style: TextStyle(fontSize: 12, color: AppColors.textSecondaryOf(context))), const SizedBox(height: 4), Text( - '${formatCompact(order.price)} 积分值', + '${formatCompact(order.price)} 绿积分', style: TextStyle( fontSize: 16, fontWeight: FontWeight.bold, @@ -414,7 +414,7 @@ class _C2cMarketPageState extends ConsumerState children: [ Text('总金额', style: TextStyle(fontSize: 12, color: AppColors.textSecondaryOf(context))), Text( - '${formatCompact(order.totalAmount)} 积分值', + '${formatCompact(order.totalAmount)} 绿积分', style: const TextStyle( fontSize: 14, fontWeight: FontWeight.bold, @@ -505,7 +505,7 @@ class _C2cMarketPageState extends ConsumerState ), ), Text( - '${formatCompact(order.totalAmount)} 积分值', + '${formatCompact(order.totalAmount)} 绿积分', style: const TextStyle( fontSize: 16, fontWeight: FontWeight.bold, @@ -672,7 +672,7 @@ class _C2cMarketPageState extends ConsumerState mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Text('单价', style: TextStyle(fontSize: 13, color: AppColors.textSecondaryOf(context))), - Text('${formatCompact(order.price)} 积分值', style: TextStyle(fontSize: 13, color: AppColors.textPrimaryOf(context))), + Text('${formatCompact(order.price)} 绿积分', style: TextStyle(fontSize: 13, color: AppColors.textPrimaryOf(context))), ], ), const SizedBox(height: 8), 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 2655349a..cc41fdb2 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 @@ -177,7 +177,7 @@ class _C2cOrderDetailPageState extends ConsumerState { statusText = '待付款'; remainingSeconds = order.paymentRemainingSeconds; statusDesc = remainingSeconds != null && remainingSeconds > 0 - ? '请在 ${_formatRemainingTime(remainingSeconds)} 内完成付款' + ? '对方将在 ${_formatRemainingTime(remainingSeconds)} 内完成付款' : '买方需在规定时间内付款'; statusIcon = Icons.payment; break;