Commit d8beae15 by 刘鹏

feat : 学历筛选入参问题修复

parent 343cb1e5
......@@ -6,7 +6,7 @@ ext {
// -------------- 业务模块 --------------
//第三步 若干
"m-confide" : "0.0.49.65",
"m-consultant" : "0.0.60.11",
"m-consultant" : "0.0.60.16",
"m-fm" : "0.0.30.04",
"m-user" : "0.0.62.04",
"m-home" : "0.0.23.17",
......@@ -93,7 +93,7 @@ ext {
//第三步 若干
"m-confide" : "0.0.49.65",
"m-consultant" : "0.0.60.11",
"m-consultant" : "0.0.60.16",
"m-fm" : "0.0.30.07",
"m-user" : "0.0.62.04",
"m-home" : "0.0.23.17",
......
......@@ -139,6 +139,10 @@ class ExpertSearchPresenter : SimplePresenter<IExpertSearchView>() {
if (allFilter.ages.isNotEmpty()) {
sb.append("&ages=").append(allFilter.ages.map { it.key }.joinToString(","))
}
if (allFilter.doctorEdu.isNotEmpty()) {
sb.append("&edus=").append(allFilter.doctorEdu.map { it.key }.joinToString(","))
}
// 擅长人群拼接
if (allFilter.specialityCrowd.isNotEmpty()) {
sb.append("&crowdsTags=")
......
......@@ -241,7 +241,7 @@ class FilterPopupWindow(
}
//学历
if (tempFilter.doctorEdu.isNotEmpty()) {
sb.append("&doctorEdu=").append(tempFilter.doctorEdu.map { it.value }.joinToString(","))
sb.append("&edus=").append(tempFilter.doctorEdu.map { it.key }.joinToString(","))
if (ConsultBIConstants.POSITION_EDU_CHOICE_CLICK == biEventName) {
biEventParams = tempFilter.doctorEdu.map { it.value }.joinToString(",")
}
......
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