From 8fe38525a27568df00793bf583e7d0083287823f Mon Sep 17 00:00:00 2001 From: hailin Date: Thu, 29 Jan 2026 08:19:39 -0800 Subject: [PATCH] =?UTF-8?q?fix(mining-app):=20=E9=AA=8C=E8=AF=81=E6=94=B6?= =?UTF-8?q?=E6=AC=BE=E6=96=B9=E5=A4=B1=E8=B4=A5=E6=97=B6=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E6=8F=90=E7=A4=BA=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.5 --- .../lib/presentation/pages/asset/send_shares_page.dart | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/frontend/mining-app/lib/presentation/pages/asset/send_shares_page.dart b/frontend/mining-app/lib/presentation/pages/asset/send_shares_page.dart index c7263aa5..dd50bf25 100644 --- a/frontend/mining-app/lib/presentation/pages/asset/send_shares_page.dart +++ b/frontend/mining-app/lib/presentation/pages/asset/send_shares_page.dart @@ -538,6 +538,15 @@ class _SendSharesPageState extends ConsumerState { _isRecipientVerified = false; _recipientNickname = null; }); + // 显示验证失败提示 + if (mounted) { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar( + content: Text('用户不存在或无法转账'), + backgroundColor: _red, + ), + ); + } } }