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
83611174
Commit
83611174
authored
Dec 27, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
3e26113a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
4 deletions
+29
-4
stuList.vue
src/pages/stuMan/stuList.vue
+29
-4
No files found.
src/pages/stuMan/stuList.vue
View file @
83611174
...
...
@@ -155,7 +155,6 @@
padding
:
5px
10px
;
align-items
:
center
;
}
</
style
>
<
template
>
<div
class=
"page-body stuList"
>
...
...
@@ -218,6 +217,19 @@
<q-input
@
input=
"resetSearch"
clearable
standout=
"bg-primary text-white"
v-model=
"msg.GuestName"
label=
"学员姓名"
@
clear=
"resetSearch"
maxlength=
"20"
/>
</div>
<div
class=
"col-3"
>
<q-select
@
input=
"resetSearch"
standout=
"bg-primary text-white"
v-model=
"msg.GuestState"
class=
"col-6"
option-label=
"Name"
option-value=
"Id"
use-input
:options=
"GuestStateList"
emit-value
map-options
label=
"学员状态"
clearable
>
<
template
v-slot:no-option
>
<q-item>
<q-item-section
class=
"text-grey"
>
未找到相关数据
</q-item-section>
</q-item>
</
template
>
</q-select>
</div>
</div>
</div>
<div
class=
"page-content"
>
...
...
@@ -356,6 +368,9 @@
getEarlyWarningEnum
,
getTypeEnum
,
}
from
"../../api/stuMan/index.js"
;
import
{
queryGuestStateList
}
from
"../../api/sale/sale.js"
;
import
MoreQuery
from
"../../components/stuMan/moreQuery.vue"
;
import
StopLessonForm
from
"../../components/teacher/stopLessonForm"
;
import
transferclassForm
from
"../../components/sale/transferclass-form"
;
//转班信息
...
...
@@ -399,6 +414,7 @@
EarlyWarning
:
0
,
//预警
OrderTime
:
""
,
//下单时间
EndOrderTime
:
""
,
//下单结束时间
GuestState
:
""
,
//学员状态
},
pageCount
:
0
,
columns
:
[{
...
...
@@ -588,8 +604,13 @@
isShowList
:
false
,
//是否显示可补课课时,缺勤次数,请假次数
showType
:
1
,
isShowEventLog
:
false
,
//是否显示事件记录
GuestStateList
:
[],
//学员状态列表
};
},
created
()
{
this
.
getGuestStateList
();
},
mounted
()
{
this
.
getSchool
();
this
.
getCourseList
();
...
...
@@ -599,6 +620,12 @@
this
.
getList
();
},
methods
:
{
//获取学员状态列表
getGuestStateList
()
{
queryGuestStateList
({}).
then
(
res
=>
{
this
.
GuestStateList
=
res
.
Data
;
})
},
//获取校区下拉
getSchool
()
{
getSchoolDropdown
({}).
then
((
res
)
=>
{
...
...
@@ -839,9 +866,7 @@
},
},
};
</
script
>
<
style
lang=
"sass"
>
@import
url('~assets/css/table.sass')
</
style
>
</
style
>
\ No newline at end of file
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