1:修改巡乐会抽奖次数,更改为1-5-8

2:修改手机换绑和手机绑定
3:修改系统消息展示背景
This commit is contained in:
2025-12-19 15:51:24 +08:00
parent b028ec883b
commit 07dbffaa5a
16 changed files with 261 additions and 64 deletions

View File

@@ -275,7 +275,7 @@ public class TourClubDialogFragment extends BaseMvpDialogFragment<GiftLotteryPre
if (!isDrawing) {
isDrawing = true;
prepareForNewLottery();
num = "10";
num = "5";
MvpPre.xlhChou(roomId, num);
} else {
// com.hjq.toast.ToastUtils.show("正在抽奖中...");
@@ -285,7 +285,7 @@ public class TourClubDialogFragment extends BaseMvpDialogFragment<GiftLotteryPre
if (!isDrawing) {
isDrawing = true;
prepareForNewLottery();
num = "100";
num = "8";
MvpPre.xlhChou(roomId, num);
} else {
// com.hjq.toast.ToastUtils.show("正在抽奖中...");
@@ -411,8 +411,8 @@ public class TourClubDialogFragment extends BaseMvpDialogFragment<GiftLotteryPre
private void upTitle(int boxPrice) {
this.mboxPrice = boxPrice;
mBinding.tvOne.setText(boxPrice + "币一次");
mBinding.tvTen.setText((boxPrice * 10) + "");
mBinding.tvHundred.setText((boxPrice * 100) + "");
mBinding.tvTen.setText((boxPrice * 5) + "");
mBinding.tvHundred.setText((boxPrice * 8) + "");
}
// TODO: 2025/8/29 接收im推送过来的消息
@@ -619,12 +619,12 @@ public class TourClubDialogFragment extends BaseMvpDialogFragment<GiftLotteryPre
mBinding.llOne.setClickable( false);
}
if (icon>=mboxPrice*10){
if (icon>=mboxPrice*5){
mBinding.llTen.setClickable( true);
}else {
mBinding.llTen.setClickable( false);
}
if (icon>=mboxPrice*100){
if (icon>=mboxPrice*8){
mBinding.llHundred.setClickable( true);
}else {
mBinding.llHundred.setClickable( false);