bug修改 - 提现界面的进度值没有那么精确,举个例子:按理来说我1.10的钱,在10档位的进度值应该为10.1%
This commit is contained in:
parent
88c1520177
commit
7ef5257a16
|
|
@ -491,7 +491,9 @@ class WithdrawManager private constructor() {
|
|||
private fun getStartedItemRestCashCount(): Double {
|
||||
var allStartedItemRestCashNum = 0.0
|
||||
mItemList.forEachIndexed { index, item ->
|
||||
allStartedItemRestCashNum += getStartedItemRestCashNum(index)
|
||||
if (!(TaskManager.instance().newbieFirstWithdrawStatus().getStatusBean().hasClaimReward && index == 0)) {
|
||||
allStartedItemRestCashNum += getStartedItemRestCashNum(index)
|
||||
}
|
||||
}
|
||||
|
||||
return allStartedItemRestCashNum
|
||||
|
|
|
|||
Loading…
Reference in New Issue