From 262b6425a6a9c0289a15ca4cf338b8d94c38e07b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=93=88=E5=93=88=E5=93=88?= Date: Thu, 25 Aug 2022 16:04:59 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9B=9E=E9=84=89=E9=8C=A2=E5=8C=85=EF=BC=8CUI?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/mine/mine_wallet_page.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/mine/mine_wallet_page.dart b/lib/mine/mine_wallet_page.dart index 1adc710a..04226422 100644 --- a/lib/mine/mine_wallet_page.dart +++ b/lib/mine/mine_wallet_page.dart @@ -370,7 +370,7 @@ class _MineWalletPage extends State { } List calculateBalance(UserBill userBill, int index) { - double tbalance = double.tryParse(userBill.balance ?? "0");/// 总余额 + double tbalance = double.tryParse(userBill.number ?? "0");/// 总余额 String surplusGreenMoney = userBill.surplusGreenMoney; String surplusActivityMoney = userBill.surplusActivityMoney; double surplusMoney = double.tryParse(surplusGreenMoney ?? "0"); @@ -402,7 +402,7 @@ class _MineWalletPage extends State { "${userBill.pm == 0 ? '-' : '+'}$activity" ]; } - if (money > 0) { + if (money > 0 && (balance - money) > 0) { return [ S.of(context).yue, "${userBill.pm == 0 ? '-' : '+'}${(balance - money)}"