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,