bug修改 - 提现界面的进度值没有那么精确,举个例子:按理来说我1.10的钱,在10档位的进度值应该为10.1%

This commit is contained in:
renhaoting 2025-12-29 13:58:27 +08:00
parent 88c1520177
commit 7ef5257a16
1 changed files with 3 additions and 1 deletions

View File

@ -491,7 +491,9 @@ class WithdrawManager private constructor() {
private fun getStartedItemRestCashCount(): Double { private fun getStartedItemRestCashCount(): Double {
var allStartedItemRestCashNum = 0.0 var allStartedItemRestCashNum = 0.0
mItemList.forEachIndexed { index, item -> mItemList.forEachIndexed { index, item ->
allStartedItemRestCashNum += getStartedItemRestCashNum(index) if (!(TaskManager.instance().newbieFirstWithdrawStatus().getStatusBean().hasClaimReward && index == 0)) {
allStartedItemRestCashNum += getStartedItemRestCashNum(index)
}
} }
return allStartedItemRestCashNum return allStartedItemRestCashNum