From edfdb1a899d30f8a51831faf997d733905915312 Mon Sep 17 00:00:00 2001 From: hailin Date: Tue, 20 Jan 2026 02:16:35 -0800 Subject: [PATCH] =?UTF-8?q?fix(asset):=20=E5=86=BB=E7=BB=93=E7=A7=AF?= =?UTF-8?q?=E5=88=86=E5=80=BC=E4=B8=BA0=E6=97=B6=E7=8A=B6=E6=80=81?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E4=B8=BA"=E6=97=A0"=E8=80=8C=E9=9D=9E"?= =?UTF-8?q?=E6=8C=82=E5=8D=95=E4=B8=AD"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.5 --- .../mining-app/lib/presentation/pages/asset/asset_page.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/mining-app/lib/presentation/pages/asset/asset_page.dart b/frontend/mining-app/lib/presentation/pages/asset/asset_page.dart index fc2d462f..cef3e354 100644 --- a/frontend/mining-app/lib/presentation/pages/asset/asset_page.dart +++ b/frontend/mining-app/lib/presentation/pages/asset/asset_page.dart @@ -839,7 +839,7 @@ class _AssetPageState extends ConsumerState { balance: asset?.frozenCash, isLoading: isLoading, unit: '积分值', - status: '挂单中', + status: (double.tryParse(asset?.frozenCash ?? '0') ?? 0) > 0 ? '挂单中' : '无', statusColor: AppColors.textMutedOf(context), statusBgColor: AppColors.cardOf(context), statusBorder: true,