From 53cc4623ff2c0a08e952f222ed6ef82c83784cfb Mon Sep 17 00:00:00 2001 From: hailin Date: Mon, 15 Dec 2025 04:39:34 -0800 Subject: [PATCH] =?UTF-8?q?chore(trading):=20=E6=9A=82=E6=97=B6=E5=B1=8F?= =?UTF-8?q?=E8=94=BDBNB=E3=80=81OG=E3=80=81DST=E7=BB=93=E7=AE=97=E5=B8=81?= =?UTF-8?q?=E7=A7=8D=EF=BC=8C=E5=8F=AA=E4=BF=9D=E7=95=99=E4=BA=BA=E6=B0=91?= =?UTF-8?q?=E5=B8=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../trading/presentation/pages/trading_page.dart | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/frontend/mobile-app/lib/features/trading/presentation/pages/trading_page.dart b/frontend/mobile-app/lib/features/trading/presentation/pages/trading_page.dart index 79621b1e..22777c40 100644 --- a/frontend/mobile-app/lib/features/trading/presentation/pages/trading_page.dart +++ b/frontend/mobile-app/lib/features/trading/presentation/pages/trading_page.dart @@ -406,13 +406,14 @@ class _TradingPageState extends ConsumerState { ), child: Row( children: [ - _buildCurrencyChip(SettlementCurrency.bnb, 'BNB'), - const SizedBox(width: 8), - _buildCurrencyChip(SettlementCurrency.og, 'OG'), - const SizedBox(width: 8), + // TODO: BNB, OG, DST 暂时屏蔽,待开放后取消注释 + // _buildCurrencyChip(SettlementCurrency.bnb, 'BNB'), + // const SizedBox(width: 8), + // _buildCurrencyChip(SettlementCurrency.og, 'OG'), + // const SizedBox(width: 8), _buildCurrencyChip(SettlementCurrency.usdt, '人民币'), - const SizedBox(width: 8), - _buildCurrencyChip(SettlementCurrency.dst, 'DST'), + // const SizedBox(width: 8), + // _buildCurrencyChip(SettlementCurrency.dst, 'DST'), ], ), ),