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
6b80104f
Commit
6b80104f
authored
Jan 22, 2021
by
sunchao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
辅导人筛选优化
parent
80696286
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
2 deletions
+40
-2
src/app/my/recruiting-detail/recruiting-detail.component.html
+22
-2
src/app/my/recruiting-detail/recruiting-detail.component.scss
+6
-0
src/app/my/recruiting-detail/recruiting-detail.component.ts
+12
-0
No files found.
src/app/my/recruiting-detail/recruiting-detail.component.html
View file @
6b80104f
...
...
@@ -151,13 +151,14 @@
</div>
<div
class=
"contentItem"
>
<span>
辅导人
</span>
<select
[(
ngModel
)]="
employQuery
.
mentorPractitionerId
"
class=
"form-control"
(
ngModelChange
)="
getName
(
2
,
employQuery
.
mentorPractitionerId
);
getPractitionerDetails
(
employQuery
.
mentorPractitionerId
)"
<
!-- <
select [(ngModel)]="employQuery.mentorPractitionerId" class="form-control" (ngModelChange)="getName(2,employQuery.mentorPractitionerId);getPractitionerDetails(employQuery.mentorPractitionerId)"
[disabled]="approveStatus!=null">
<option value=null>请选择</option>
<option [value]='practitionerInfo.id' *ngFor="let practitionerInfo of practitionerList">
{{practitionerInfo.name}}
</option>
</select>
</select> -->
<div
(
click
)="
vagueSearch
()"
>
请选择辅导人
</div>
</div>
<div
class=
"contentItem"
>
<span>
介绍人
</span>
...
...
@@ -220,5 +221,23 @@
<li
(
click
)="
this
.
isShow =
false;"
>
取消
</li>
</ul>
</div>
<div
class=
"toastWrapper toast"
*
ngIf=
"selectedId===4;"
>
</div>
<!--辅导人介绍人选择框-->
<div
class=
"editContainer"
style=
"background: #efeff4;padding: 0;"
*
ngIf=
"selectedId===4;"
>
<SearchBar
[
placeholder
]="'搜索你的增员'"
[
maxLength
]="
8
"
(
onChange
)="
change
($
event
)"
></SearchBar>
<ul
class=
"practitioner_con"
>
<li
*
ngFor=
"let practitionerItem of practitionerList"
>
{{practitionerItem.name}}
</li>
</ul>
</div>
</div>
<ydlife-toast
*
ngIf=
"toastDialog"
[
toastInfo
]="
toastInfo
"
></ydlife-toast>
\ No newline at end of file
src/app/my/recruiting-detail/recruiting-detail.component.scss
View file @
6b80104f
...
...
@@ -247,6 +247,12 @@
border-radius
:
10px
;
}
}
ul
.practitioner_con
{
height
:
90%
;
overflow
:
auto
;
background
:
#fff
;
padding
:
10px
;
}
}
.recordLists
{
li
{
...
...
src/app/my/recruiting-detail/recruiting-detail.component.ts
View file @
6b80104f
...
...
@@ -557,4 +557,16 @@ export class RecruitingDetailComponent implements OnInit {
}
})
}
/**param
* 辅导人:1
* 介绍人:2
* **/
vagueSearch
(
type
){
}
change
(
event
){
console
.
log
(
event
)
}
}
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