Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
Project
Project
Details
Activity
Releases
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
罗超
confucius
Commits
78932aff
Commit
78932aff
authored
Dec 17, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
a428655d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
3 deletions
+13
-3
student-left.vue
src/components/school/student/student-left.vue
+13
-3
No files found.
src/components/school/student/student-left.vue
View file @
78932aff
...
...
@@ -142,8 +142,8 @@
转介人
</div>
<div
class=
"stage_value"
>
<q-select
filled
v-model=
"customObj.StuSourceId"
style=
"width:185px;"
dense
:options=
"customList"
option-label=
"CustomerName
"
option-
value=
"Customer
Id"
emit-value
map-options
/>
<q-select
filled
v-model=
"customObj.StuSourceId"
style=
"width:185px;"
use-input
@
filter=
"filterStudent"
dense
:options=
"MyTransListData
"
option-
label=
"StuName"
option-value=
"Stu
Id"
emit-value
map-options
/>
</div>
</div>
</div>
...
...
@@ -345,6 +345,7 @@
customTypeList
:
[],
//客户类型
customList
:
[],
TransListData
:[],
//转介人数据
MyTransListData
:[],
checkMsg
:
{
StuId
:
0
,
StuTel
:
''
,
...
...
@@ -502,12 +503,21 @@
//获取转介人下拉
getStudentDorpDown
(){
getStudentDorpDownList
().
then
(
res
=>
{
console
.
log
(
res
,
'
数据
'
);
console
.
log
(
res
,
'
res
'
);
if
(
res
.
Code
==
1
)
{
this
.
TransListData
=
res
.
Data
;
this
.
MyTransListData
=
res
.
Data
;
}
})
},
//筛选转介人
filterStudent
(
val
,
update
,
abort
){
update
(()
=>
{
this
.
MyTransListData
=
this
.
TransListData
.
filter
(
v
=>
v
.
StuName
.
indexOf
(
val
)
>
-
1
);
});
},
queryStuInfo
()
{
getStudentInfo
({
StuId
:
this
.
customMsg
.
StuId
...
...
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