hanjing před 7 roky
rodič
revize
1559e6c218

+ 3 - 1
app/src/main/java/com/sheep/gamegroup/view/activity/WithdrawalAct.java

@@ -25,6 +25,7 @@ import com.sheep.gamegroup.util.CommonUtil;
 import com.sheep.gamegroup.util.DataUtil;
 import com.sheep.gamegroup.util.Jump2View;
 import com.sheep.gamegroup.util.ListUtil;
+import com.sheep.gamegroup.util.LogUtil;
 import com.sheep.gamegroup.util.UMConfigUtils;
 import com.sheep.gamegroup.util.ViewUtil;
 import com.sheep.gamegroup.view.adapter.WithdrawalAdapter;
@@ -212,6 +213,7 @@ public class WithdrawalAct extends BaseActivity implements WithdrawalContract.Vi
     }
 
     private void showWithdrawServiceCharge() {
+        LogUtil.logE("已提现: " + balanceAmount+" 次");
         try {
             float money = Float.parseFloat(wlLists.get(select).getGridViewEntity().getValue());
             if (withdrawCount < 2) {
@@ -230,7 +232,7 @@ public class WithdrawalAct extends BaseActivity implements WithdrawalContract.Vi
 
     //显示可以提现金额
     private void setBalanceAmount() {
-
+        LogUtil.logE("可提现: " + balanceAmount);
         String sr = "可提现金额 <font color='#ff2d4b'><big>" + NumberFormatUtils.retainMost2(balanceAmount) + "</big></font> 元";
         withdrawal_click_bindname_tv.setText(Html.fromHtml(sr));
     }