Commit fa5eadeb by upwork.021

feat: 擅长人群筛选bug修复,组件升级提交

parent f7b8b9cf
......@@ -6,7 +6,7 @@ ext {
// -------------- 业务模块 --------------
//第三步 若干
"m-confide" : "0.0.50.20",
"m-consultant" : "0.0.60.63",
"m-consultant" : "0.0.60.64",
"m-fm" : "0.0.30.09",
"m-user" : "0.0.62.48",
"m-home" : "0.0.23.90",
......@@ -94,7 +94,7 @@ ext {
// -------------- 业务模块 --------------
//第三步 若干
"m-confide" : "0.0.50.20",
"m-consultant" : "0.0.60.63",
"m-consultant" : "0.0.60.64",
"m-fm" : "0.0.30.09",
"m-user" : "0.0.62.48",
"m-home" : "0.0.23.90",
......
......@@ -141,7 +141,7 @@ class ExpertSearchPresenter : SimplePresenter<IExpertSearchView>() {
specialityCrowd.add(it.key)
}
val specialityCrowdMap = HashMap<String, Any>()
specialityCrowdMap["in"] = specialityCrowdMap
specialityCrowdMap["in"] = specialityCrowd
filterMap["doctor_tag_list.list.tag_id"] = specialityCrowdMap
}
// 学历
......@@ -157,16 +157,11 @@ class ExpertSearchPresenter : SimplePresenter<IExpertSearchView>() {
// 其它
if (allFilter.others.isNotEmpty()) {
val gender = ArrayList<String?>()
// val bookIngStatusList = ArrayList<String>()
allFilter.others.forEach {
when (it.key1) {
"gender" -> {
gender.add(it.value1)
}
// "booking_status" -> {
// bookIngStatusList.add("1")
// bookIngStatusList.add("2")
// }
else -> {
filterMap[it.key1] = it.value1
}
......@@ -177,11 +172,6 @@ class ExpertSearchPresenter : SimplePresenter<IExpertSearchView>() {
genderMap["in"] = gender
filterMap["gender"] = genderMap
}
// if (bookIngStatusList.size>0){
// val bookStatusMap = HashMap<String, Any>()
// bookStatusMap["in"] = bookIngStatusList
// filterMap["booking_status"] = bookStatusMap
// }
}
map["filter"] = filterMap
......
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