Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
YDL-Component-Medical
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
杨凯
YDL-Component-Medical
Commits
d8beae15
Commit
d8beae15
authored
Apr 26, 2022
by
刘鹏
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat : 学历筛选入参问题修复
parent
343cb1e5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
3 deletions
+7
-3
config.gradle
config.gradle
+2
-2
ExpertSearchPresenter.kt
m-consultant/src/main/java/com/yidianling/consultant/ExpertSearchPresenter.kt
+4
-0
FilterPopupWindow.kt
m-consultant/src/main/java/com/yidianling/consultant/ui/view/FilterPopupWindow.kt
+1
-1
No files found.
config.gradle
View file @
d8beae15
...
...
@@ -6,7 +6,7 @@ ext {
// -------------- 业务模块 --------------
//第三步 若干
"m-confide"
:
"0.0.49.65"
,
"m-consultant"
:
"0.0.60.1
1
"
,
"m-consultant"
:
"0.0.60.1
6
"
,
"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.1
1
"
,
"m-consultant"
:
"0.0.60.1
6
"
,
"m-fm"
:
"0.0.30.07"
,
"m-user"
:
"0.0.62.04"
,
"m-home"
:
"0.0.23.17"
,
...
...
m-consultant/src/main/java/com/yidianling/consultant/ExpertSearchPresenter.kt
View file @
d8beae15
...
...
@@ -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="
)
...
...
m-consultant/src/main/java/com/yidianling/consultant/ui/view/FilterPopupWindow.kt
View file @
d8beae15
...
...
@@ -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
(
","
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment