From eea38b2b86868b9ccafee875fa20950bed77ed3d Mon Sep 17 00:00:00 2001 From: hailin Date: Sat, 28 Feb 2026 07:20:51 -0800 Subject: [PATCH] =?UTF-8?q?fix(pre-planting):=20=E8=B4=AD=E4=B9=B0?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E5=92=8C=E5=BC=B9=E7=AA=97=E4=B8=AD=20USDT?= =?UTF-8?q?=20=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 Sonnet 4.6 --- .../presentation/pages/pre_planting_purchase_page.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/mobile-app/lib/features/pre_planting/presentation/pages/pre_planting_purchase_page.dart b/frontend/mobile-app/lib/features/pre_planting/presentation/pages/pre_planting_purchase_page.dart index 5295680a..6318ab32 100644 --- a/frontend/mobile-app/lib/features/pre_planting/presentation/pages/pre_planting_purchase_page.dart +++ b/frontend/mobile-app/lib/features/pre_planting/presentation/pages/pre_planting_purchase_page.dart @@ -369,7 +369,7 @@ class _PrePlantingPurchasePageState ScaffoldMessenger.of(context).showSnackBar( SnackBar( content: Text( - '购买成功!已购买 ${response.portionCount} 份预种(${response.totalAmount.toInt()} USDT)', + '购买成功!已购买 ${response.portionCount} 份预种(${response.totalAmount.toInt()} 绿积分)', ), backgroundColor: const Color(0xFF4CAF50), ), @@ -438,11 +438,11 @@ class _PrePlantingPurchasePageState children: [ _buildDialogRow('购买份数', '$_quantity 份'), const SizedBox(height: 8), - _buildDialogRow('单价', '${_pricePerPortion.toInt()} USDT/份'), + _buildDialogRow('单价', '${_pricePerPortion.toInt()} 绿积分/份'), const SizedBox(height: 8), _buildDialogRow( '总金额', - '${_formatNumber(totalAmount)} USDT', + '${_formatNumber(totalAmount)} 绿积分', highlight: true, ), const SizedBox(height: 8), @@ -1342,7 +1342,7 @@ class _PrePlantingPurchasePageState const SizedBox(height: 7), // 合并提示 Text( - '每 $_portionsPerTree 份自动合成 1 棵树(${_formatNumber(_pricePerPortion * _portionsPerTree)} USDT)', + '每 $_portionsPerTree 份自动合成 1 棵树(${_formatNumber(_pricePerPortion * _portionsPerTree)} 绿积分)', style: const TextStyle( fontSize: 14, fontFamily: 'Inter',