Commit 2ecece76 by 徐健

backup

parent 0dfb004c
......@@ -15,7 +15,7 @@ public class UserInfoCollectParam {
}
public String content; //"男","女"
public String userInfoType; // "gender"性别 "borthDate"年龄 "consultAttention"关注话题
public String userInfoType; // "gener"性别 "age"年龄 "consultAttention"关注话题
public String getContent() {
return content;
......
......@@ -135,8 +135,8 @@ class CollectSexAndBirthActivity : BaseActivity() {
ActionCountUtils.count(UserBIConstants.COLLECT_USER_INFO_PAGE + "|" + UserBIConstants.COLLECT_USER_INFO_NEXT_CLICK, "$selectedYear")
val userInfoBean = UserInfoCollectUploadParam()
userInfoBean.userInfoList = ArrayList()
userInfoBean.userInfoList.add(UserInfoCollectParam(if (selectedSex == 1) "男" else "女", "gender"))
userInfoBean.userInfoList.add(UserInfoCollectParam("$selectedYear", "borthDate"))
userInfoBean.userInfoList.add(UserInfoCollectParam(if (selectedSex == 1) "男" else "女", "gener"))
userInfoBean.userInfoList.add(UserInfoCollectParam("$selectedYear", "age"))
UserHttpImpl.getInstance().userInfoCollectUpload(userInfoBean)
.compose(RxUtils.resultJavaData())
.subscribeOn(Schedulers.newThread())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment