|
|
@@ -2959,12 +2959,19 @@ public class Jump2View {
|
|
|
public void gotoGameVipRecharge(Applications app) {
|
|
|
String url = Config.getUrlByPath(Config.PATH_DIRECTIONAL_RECHARGE + "/" + app.getGame_discount_id(), "authorization", SpUtils.getToken(SheepApp.getInstance()), "ssnocache", "1");
|
|
|
WebParams webParams = new WebParams(url, "抢购优惠").setShowTitle(false);
|
|
|
- Jump2View.getInstance().goWeb(SheepApp.getInstance().getCurrentActivity(), webParams);
|
|
|
+ Jump2View.getInstance().goWeb(SheepApp.getInstance(), webParams);
|
|
|
}
|
|
|
+
|
|
|
public void gotoGameVipRecharge(int discountId, String packageName, String token) {
|
|
|
String url = Config.getUrlByPath(Config.PATH_DIRECTIONAL_RECHARGE + "/" + discountId, "packagename", packageName, "authorization", token, "ssnocache", "1");
|
|
|
WebParams webParams = new WebParams(url, "抢购优惠").setShowTitle(false);
|
|
|
- Jump2View.getInstance().goWeb(SheepApp.getInstance().getCurrentActivity(), webParams);
|
|
|
+ Jump2View.getInstance().goWeb(SheepApp.getInstance(), webParams, true);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void gotoGameGoldCoins(String token) {
|
|
|
+ String url = Config.getUrlByPath(Config.PATH_DIRECTIONAL_MAKEGOLD, "authorization", token, "ssnocache", "1");
|
|
|
+ WebParams webParams = new WebParams(url, "金丹传说").setShowTitle(false);
|
|
|
+ Jump2View.getInstance().goWeb(SheepApp.getInstance(), webParams, true);
|
|
|
}
|
|
|
|
|
|
/**
|