|
@@ -51,6 +51,7 @@ import com.sheep.gamegroup.model.entity.WebParams;
|
|
|
import com.sheep.gamegroup.model.entity.WebviewEntity;
|
|
import com.sheep.gamegroup.model.entity.WebviewEntity;
|
|
|
import com.sheep.gamegroup.model.entity.XianWanEntity;
|
|
import com.sheep.gamegroup.model.entity.XianWanEntity;
|
|
|
import com.sheep.gamegroup.model.util.SheepSubscriber;
|
|
import com.sheep.gamegroup.model.util.SheepSubscriber;
|
|
|
|
|
+import com.sheep.gamegroup.model.util.ShowRedDot;
|
|
|
import com.sheep.gamegroup.module.find.activity.ActMediaChoose;
|
|
import com.sheep.gamegroup.module.find.activity.ActMediaChoose;
|
|
|
import com.sheep.gamegroup.module.game.activity.ActDownloadManager;
|
|
import com.sheep.gamegroup.module.game.activity.ActDownloadManager;
|
|
|
import com.sheep.gamegroup.module.game.activity.ActGameCenterType;
|
|
import com.sheep.gamegroup.module.game.activity.ActGameCenterType;
|
|
@@ -181,6 +182,7 @@ import com.zhy.http.okhttp.OkHttpUtils;
|
|
|
import com.zhy.http.okhttp.callback.FileCallBack;
|
|
import com.zhy.http.okhttp.callback.FileCallBack;
|
|
|
|
|
|
|
|
import org.afinal.simplecache.DataKey;
|
|
import org.afinal.simplecache.DataKey;
|
|
|
|
|
+import org.greenrobot.eventbus.EventBus;
|
|
|
import org.xutils.ex.DbException;
|
|
import org.xutils.ex.DbException;
|
|
|
|
|
|
|
|
import java.io.File;
|
|
import java.io.File;
|
|
@@ -2937,11 +2939,20 @@ public class Jump2View {
|
|
|
WebParams webParams = new WebParams(Config.getUrlByPath(Config.PATH_NEW_SPRING_ACTIVITIES), "新春活动");
|
|
WebParams webParams = new WebParams(Config.getUrlByPath(Config.PATH_NEW_SPRING_ACTIVITIES), "新春活动");
|
|
|
Jump2View.getInstance().goWeb(SheepApp.getInstance().getCurrentActivity(), webParams);
|
|
Jump2View.getInstance().goWeb(SheepApp.getInstance().getCurrentActivity(), webParams);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ public void goAppointTaskList() {
|
|
|
|
|
+ goAppointTaskList(false);
|
|
|
|
|
+ }
|
|
|
/**
|
|
/**
|
|
|
* 小绵羊3.5.2新增 -- 跳转 定向奖励 界面
|
|
* 小绵羊3.5.2新增 -- 跳转 定向奖励 界面
|
|
|
|
|
+ * @param isFromActMyMoney 是否是从我的资产中的定向奖励点击进入
|
|
|
*/
|
|
*/
|
|
|
- public void goAppointTaskList() {
|
|
|
|
|
|
|
+ public void goAppointTaskList(boolean isFromActMyMoney) {
|
|
|
WebParams webParams = new WebParams(Config.getUrlByPath(Config.PATH_APPOINT_TASK_LIST), "定向奖励");
|
|
WebParams webParams = new WebParams(Config.getUrlByPath(Config.PATH_APPOINT_TASK_LIST), "定向奖励");
|
|
|
Jump2View.getInstance().goWeb(SheepApp.getInstance().getCurrentActivity(), webParams);
|
|
Jump2View.getInstance().goWeb(SheepApp.getInstance().getCurrentActivity(), webParams);
|
|
|
|
|
+ if(isFromActMyMoney) {
|
|
|
|
|
+ DataUtil.getInstance().readAppointList();
|
|
|
|
|
+ EventBus.getDefault().post(new ShowRedDot(ShowRedDot.WHERE_PERSONAL_CENTER).setShow(false));
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|