From 216394a44fcc1fe9f754dde1a0f5626b02976c55 Mon Sep 17 00:00:00 2001 From: hailin Date: Sat, 17 Jan 2026 00:10:40 -0800 Subject: [PATCH] =?UTF-8?q?refactor(trading):=20rename=20=E5=8D=96?= =?UTF-8?q?=E5=87=BA=E7=9B=B8=E5=85=B3=20=E9=BB=91=E6=B4=9E=20to=20?= =?UTF-8?q?=E7=A7=AF=E5=88=86=E8=82=A1=E6=B1=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update 10% 进入黑洞 to 10% 进入积分股池 - Update 销毁金额 to 进入积分股池 in sell confirmation - Update 注意 text in sell confirmation - Change color from red to green for 积分股池 text Co-Authored-By: Claude Opus 4.5 --- .../lib/presentation/pages/trading/trading_page.dart | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/mining-app/lib/presentation/pages/trading/trading_page.dart b/frontend/mining-app/lib/presentation/pages/trading/trading_page.dart index c6a6fa9f..21ef3a8f 100644 --- a/frontend/mining-app/lib/presentation/pages/trading/trading_page.dart +++ b/frontend/mining-app/lib/presentation/pages/trading/trading_page.dart @@ -507,10 +507,10 @@ class _TradingPageState extends ConsumerState { style: TextStyle(fontSize: 12, color: _grayText), ), Text( - '10% 进入黑洞', + '10% 进入积分股池', style: TextStyle( fontSize: 12, - color: _red, + color: _green, fontFamily: 'monospace', ), ), @@ -928,8 +928,8 @@ class _TradingPageState extends ConsumerState { Text('交易总额: ${formatAmount(total.toString())} 积分值'), const SizedBox(height: 8), Text( - '销毁金额: ${formatAmount(burned.toString())} 积分值 (10%)', - style: const TextStyle(color: _red), + '进入积分股池: ${formatAmount(burned.toString())} 积分值 (10%)', + style: const TextStyle(color: _green), ), const SizedBox(height: 8), Text( @@ -941,7 +941,7 @@ class _TradingPageState extends ConsumerState { ), const SizedBox(height: 16), const Text( - '注意: 卖出积分股将扣除10%进入黑洞销毁,此操作不可撤销。', + '注意: 卖出积分股将扣除10%进入积分股池,此操作不可撤销。', style: TextStyle( fontSize: 12, color: _grayText,