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
01dde489
Commit
01dde489
authored
Jul 21, 2021
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
d51941a0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
8 deletions
+15
-8
makeup.vue
src/pages/course/makeup.vue
+11
-5
studentManage.vue
src/pages/stuMan/studentManage.vue
+4
-3
No files found.
src/pages/course/makeup.vue
View file @
01dde489
...
@@ -79,12 +79,12 @@
...
@@ -79,12 +79,12 @@
<q-td
:props=
"props"
>
<q-td
:props=
"props"
>
<q-btn
v-if=
"props.row.MakeUpStatus==3"
flat
size=
"xs"
icon=
"edit"
color=
"accent"
style=
"font-weight:400"
<q-btn
v-if=
"props.row.MakeUpStatus==3"
flat
size=
"xs"
icon=
"edit"
color=
"accent"
style=
"font-weight:400"
label=
"处理"
@
click=
"isShowEdit=true,getClickItem(props.row)"
>
label=
"处理"
@
click=
"isShowEdit=true,getClickItem(props.row)"
>
<q-popup-proxy>
<q-popup-proxy
>
<q-banner
v-if=
"isShowEdit"
>
<q-banner
v-if=
"isShowEdit"
>
<div
class=
"calenderDialog"
>
<div
class=
"calenderDialog"
>
<div
style=
"margin:10px 0 15px 0;"
>
设置处理状态
</div>
<div
style=
"margin:10px 0 15px 0;"
>
设置处理状态
</div>
<q-select
standout=
"bg-primary text-white"
option-value=
"Id"
option-label=
"Name"
<q-select
standout=
"bg-primary text-white"
option-value=
"Id"
option-label=
"Name"
v-model=
"statusMsg.MakeUpStatus"
:options=
"statusList"
emit-value
map-options
label=
"
班级状态
"
/>
v-model=
"statusMsg.MakeUpStatus"
:options=
"statusList"
emit-value
map-options
label=
"
是否可补课
"
/>
<q-card-actions
align=
"right"
class=
"bg-white"
style=
"margin-top:20px;"
>
<q-card-actions
align=
"right"
class=
"bg-white"
style=
"margin-top:20px;"
>
<q-btn
label=
"取消"
flat
color=
"grey-10"
size=
"sm"
@
click=
"isShowEdit=false"
<q-btn
label=
"取消"
flat
color=
"grey-10"
size=
"sm"
@
click=
"isShowEdit=false"
style=
"font-weight:400 !important"
/>
style=
"font-weight:400 !important"
/>
...
@@ -160,10 +160,16 @@
...
@@ -160,10 +160,16 @@
},
},
{
{
name
:
'MakeUpStatusStr'
,
name
:
'MakeUpStatusStr'
,
label
:
'
状态
'
,
label
:
'
处理结果
'
,
align
:
'left'
,
align
:
'left'
,
field
:
'MakeUpStatusStr'
field
:
'MakeUpStatusStr'
},
},
{
name
:
'TimeHour'
,
label
:
'课时长度'
,
align
:
'left'
,
field
:
'TimeHour'
},
{
{
name
:
'optioned'
,
name
:
'optioned'
,
label
:
'操作'
,
label
:
'操作'
,
...
@@ -192,11 +198,11 @@
...
@@ -192,11 +198,11 @@
Name
:
'全部'
Name
:
'全部'
},
{
},
{
Id
:
2
,
Id
:
2
,
Name
:
'
已处理
'
Name
:
'
可补课
'
},
},
{
{
Id
:
3
,
Id
:
3
,
Name
:
"
未处理
"
Name
:
"
不可补课
"
}
}
],
],
statusMsg
:
{
statusMsg
:
{
...
...
src/pages/stuMan/studentManage.vue
View file @
01dde489
...
@@ -52,8 +52,8 @@
...
@@ -52,8 +52,8 @@
@
clear=
"resetSearch"
maxlength=
"20"
/>
@
clear=
"resetSearch"
maxlength=
"20"
/>
</div>
</div>
<div
class=
"col-3"
>
<div
class=
"col-3"
>
<q-select
@
input=
"resetSearch"
standout=
"bg-primary text-white"
option-value=
"Id"
option-label=
"Name"
clearable
<q-select
@
input=
"resetSearch"
standout=
"bg-primary text-white"
option-value=
"Id"
option-label=
"Name"
v-model=
"msg.CheckStatus"
:options=
"AttendanceList"
emit-value
map-options
label=
"出勤状态"
/>
v-model=
"msg.CheckStatus"
:options=
"AttendanceList
2
"
emit-value
map-options
label=
"出勤状态"
/>
</div>
</div>
</div>
</div>
</div>
</div>
...
@@ -261,7 +261,7 @@
...
@@ -261,7 +261,7 @@
ClassId
:
0
,
ClassId
:
0
,
OrderGuestId
:
''
,
OrderGuestId
:
''
,
GuestName
:
''
,
GuestName
:
''
,
CheckStatus
:
''
,
CheckStatus
:
-
1
,
},
},
IsShowDialog
:
false
,
IsShowDialog
:
false
,
//课程分类树形列表
//课程分类树形列表
...
@@ -271,6 +271,7 @@
...
@@ -271,6 +271,7 @@
AllCourseList
:
[],
AllCourseList
:
[],
ClassList
:
[],
//班级下拉
ClassList
:
[],
//班级下拉
allClassList
:
[],
allClassList
:
[],
AttendanceList2
:[{
Name
:
'全部'
,
Id
:
-
1
},{
Name
:
'缺席'
,
Id
:
1
},{
Name
:
'请假'
,
Id
:
2
},],
AttendanceList
:[{
Name
:
'正常'
,
Id
:
0
},{
Name
:
'缺席'
,
Id
:
1
},{
Name
:
'请假'
,
Id
:
2
},],
AttendanceList
:[{
Name
:
'正常'
,
Id
:
0
},{
Name
:
'缺席'
,
Id
:
1
},{
Name
:
'请假'
,
Id
:
2
},],
option
:{
option
:{
disabledDate
:(
time
)
=>
{
disabledDate
:(
time
)
=>
{
...
...
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