6.5.4礼物冠名

This commit is contained in:
18401019693 2023-08-08 16:08:43 +08:00
parent 20c00e2896
commit af17c85366
2 changed files with 14 additions and 21 deletions

View File

@ -132,12 +132,10 @@ public class LiveNewWishListFragment extends BaseFragment {
break; break;
} }
if (wishList2.size() == 0) { if (wishList2.size() == 0) {
Bus.get().post(new PopupViewDismissEvent());
LiveNetManager.get(getContext()). LiveNetManager.get(getContext()).
setWishlistV2(type, gson.toJson(wishList2), new HttpCallback<String>() { setWishlistV2(type, gson.toJson(wishList2), new HttpCallback<String>() {
@Override @Override
public void onSuccess(String data) { public void onSuccess(String data) {
Bus.get().post(new PopupViewDismissEvent());
ToastUtil.show("修改成功"); ToastUtil.show("修改成功");
} }
@ -151,38 +149,17 @@ public class LiveNewWishListFragment extends BaseFragment {
.asCustom(new HintCustomPopup(getContext(), .asCustom(new HintCustomPopup(getContext(),
getContext().getString(R.string.dialog_tip), getContext().getString(R.string.dialog_tip),
getContext().getString(R.string.sett_rigger)) getContext().getString(R.string.sett_rigger))
.setLiveOpenOk(getContext().getString(R.string.cancel_ca)) .setLiveOpenOk(getContext().getString(R.string.settings_ser))
.setLiveOpenCancel(getContext().getString(R.string.settings_ser)) .setLiveOpenCancel(getContext().getString(R.string.cancel_ca))
.setCallBack(new HintCustomPopup.HintCustomCallBack() { .setCallBack(new HintCustomPopup.HintCustomCallBack() {
@Override @Override
public void onSure() { public void onSure() {
if (wishList2.size() > 10) {
ToastUtil.show(R.string.must_hint);
return;
}
LiveNetManager.get(getContext()).
setWishlistV2(type, gson.toJson(wishList2), new HttpCallback<String>() {
@Override
public void onSuccess(String data) {
Bus.get().post(new PopupViewDismissEvent());
ToastUtil.show("修改成功");
}
@Override
public void onError(String error) {
ToastUtil.show(R.string.net_error);
}
});
} }
@Override @Override
public void onCancel() { public void onCancel() {
}
})).show();
} else {
Bus.get().post(new PopupViewDismissEvent());
if (wishList2.size() > 10) { if (wishList2.size() > 10) {
ToastUtil.show(R.string.must_hint); ToastUtil.show(R.string.must_hint);
return; return;
@ -191,7 +168,25 @@ public class LiveNewWishListFragment extends BaseFragment {
setWishlistV2(type, gson.toJson(wishList2), new HttpCallback<String>() { setWishlistV2(type, gson.toJson(wishList2), new HttpCallback<String>() {
@Override @Override
public void onSuccess(String data) { public void onSuccess(String data) {
Bus.get().post(new PopupViewDismissEvent()); ToastUtil.show("修改成功");
}
@Override
public void onError(String error) {
ToastUtil.show(R.string.net_error);
}
});
}
})).show();
} else {
if (wishList2.size() > 10) {
ToastUtil.show(R.string.must_hint);
return;
}
LiveNetManager.get(getContext()).
setWishlistV2(type, gson.toJson(wishList2), new HttpCallback<String>() {
@Override
public void onSuccess(String data) {
ToastUtil.show("修改成功"); ToastUtil.show("修改成功");
} }

View File

@ -118,9 +118,7 @@ public class LiveNewWishListPopup extends BottomPopupView {
} else if (seasonalWish) { } else if (seasonalWish) {
seasonalWishFragment.saveWish( ); seasonalWishFragment.saveWish( );
} }
if (isDismiss) {
dismiss();
}
} }
@Override @Override