fix(trading): 修复"我的挂单"全部按钮点击无响应问题
问题原因: - trading_page.dart 中"我的挂单"卡片的"全部 >"按钮 onTap 回调为空(TODO 注释) - 用户点击时没有任何响应 修复内容: - 添加 context.push(Routes.tradingRecords) 导航到交易记录页面 - 用户现在可以点击"全部 >"查看完整的交易订单列表 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
af339b19b9
commit
964b06b370
|
|
@ -865,9 +865,7 @@ class _TradingPageState extends ConsumerState<TradingPage> {
|
|||
),
|
||||
),
|
||||
GestureDetector(
|
||||
onTap: () {
|
||||
// TODO: 查看全部挂单
|
||||
},
|
||||
onTap: () => context.push(Routes.tradingRecords),
|
||||
child: const Text(
|
||||
'全部 >',
|
||||
style: TextStyle(
|
||||
|
|
|
|||
Loading…
Reference in New Issue