Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
ydLife
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Sweet Zhang
ydLife
Commits
0924e84a
Commit
0924e84a
authored
Jan 25, 2021
by
sunchao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
经纪人筛选优化
parent
6b80104f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletions
+12
-1
src/app/my/recruiting-detail/recruiting-detail.component.html
+1
-1
src/app/my/recruiting-detail/recruiting-detail.component.scss
+4
-0
src/app/my/recruiting-detail/recruiting-detail.component.ts
+7
-0
No files found.
src/app/my/recruiting-detail/recruiting-detail.component.html
View file @
0924e84a
...
...
@@ -231,7 +231,7 @@
></SearchBar>
<ul
class=
"practitioner_con"
>
<li
*
ngFor=
"let practitionerItem of practitionerList"
>
<li
*
ngFor=
"let practitionerItem of practitionerList
Show
"
>
{{practitionerItem.name}}
</li>
</ul>
...
...
src/app/my/recruiting-detail/recruiting-detail.component.scss
View file @
0924e84a
...
...
@@ -252,6 +252,10 @@
overflow
:
auto
;
background
:
#fff
;
padding
:
10px
;
li
{
height
:
30px
;
line-height
:
30px
;
}
}
}
.recordLists
{
...
...
src/app/my/recruiting-detail/recruiting-detail.component.ts
View file @
0924e84a
...
...
@@ -48,6 +48,7 @@ export class RecruitingDetailComponent implements OnInit {
practitionerName
:
any
;
//-2已填完,null未填完,-1拒绝0通过
approveStatus
:
any
;
practitionerListShow
:
Array
<
any
>
;
constructor
(
private
activateRoute
:
ActivatedRoute
,
public
lifeCommonService
:
LifeCommonService
,
...
...
@@ -427,6 +428,7 @@ export class RecruitingDetailComponent implements OnInit {
practitionerListQuery
(){
this
.
myService
.
practitionerListQuery
(
null
).
subscribe
((
res
)
=>
{
this
.
practitionerList
=
res
[
'data'
][
'practitionerListInfoList'
];
this
.
practitionerListShow
=
res
[
'data'
][
'practitionerListInfoList'
]
});
}
...
...
@@ -568,5 +570,10 @@ export class RecruitingDetailComponent implements OnInit {
change
(
event
){
console
.
log
(
event
)
this
.
practitionerListShow
=
this
.
practitionerList
.
filter
((
item
)
=>
{
if
(
item
.
name
){
return
item
.
name
.
indexOf
(
event
)
!==-
1
;
}
})
}
}
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