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
412d26a0
Commit
412d26a0
authored
Jul 21, 2021
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
3219af56
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
461 additions
and
9 deletions
+461
-9
makeup.vue
src/pages/course/makeup.vue
+9
-6
studentManage.vue
src/pages/stuMan/studentManage.vue
+12
-2
todaysOrder.vue
src/pages/stuMan/todaysOrder.vue
+435
-0
routes.js
src/router/routes.js
+5
-1
No files found.
src/pages/course/makeup.vue
View file @
412d26a0
...
...
@@ -65,9 +65,9 @@
<
template
v-slot:body-cell-MakeUpStatusStr=
"props"
>
<q-td>
<span>
{{
props
.
row
.
MakeUpStatusStr
}}
</span>
<template
v-if=
"props.row.MakeUpStatus
==2
"
>
<br
/>
<span>
操作人:
{{
props
.
row
.
DealByName
}}
</span>
<br
/><span>
操作时间
{{
props
.
row
.
DealTime
}}
</span>
<template
v-if=
"props.row.MakeUpStatus
!=1
"
>
<br
/>
<span
v-if=
"props.row.DealByName && props.row.DealByName!=''"
>
操作人:
{{
props
.
row
.
DealByName
}}
</span>
<br
/><span
v-if=
"props.row.DealTime && props.row.DealTime!=''"
>
操作时间
{{
props
.
row
.
DealTime
}}
</span>
</
template
>
</q-td>
</template>
...
...
@@ -182,7 +182,7 @@
pageIndex
:
1
,
pageSize
:
12
,
rowsPerPage
:
12
,
MakeUpStatus
:
1
,
//(2-已处理,3-未处理)
MakeUpStatus
:
-
1
,
//(2-已处理,3-未处理)
GuestName
:
""
,
//学员名称
ClassName
:
""
,
//班级名称
CourseName
:
""
,
//课程名称
...
...
@@ -193,7 +193,7 @@
},
pageCount
:
0
,
isShowEdit
:
false
,
//是否显示修改
statusList
:
[{
Id
:
1
,
Name
:
'未处理'
},
{
Id
:
2
,
Name
:
'可补课'
},{
Id
:
3
,
Name
:
"不可补课"
}],
statusList
:
[{
Id
:
-
1
,
Name
:
'不限'
},{
Id
:
1
,
Name
:
'未处理'
},
{
Id
:
2
,
Name
:
'可补课'
},{
Id
:
3
,
Name
:
"不可补课"
}],
statusList2
:
[
{
Id
:
2
,
Name
:
'可补课'
},{
Id
:
3
,
Name
:
"不可补课"
}],
statusMsg
:
{
Id
:
0
,
...
...
@@ -242,7 +242,10 @@
this
.
statusMsg
.
ClassCheckId
=
item
.
ClassCheckId
;
this
.
statusMsg
.
GuestId
=
item
.
OrderGuestId
;
this
.
statusMsg
.
Id
=
item
.
Id
;
if
(
item
.
MakeUpStatus
!=
1
){
this
.
statusMsg
.
MakeUpStatus
=
item
.
MakeUpStatus
}
},
clearMsg
()
{
this
.
statusMsg
.
Id
=
0
;
...
...
src/pages/stuMan/studentManage.vue
View file @
412d26a0
...
...
@@ -64,7 +64,9 @@
<
template
v-slot:top=
"props"
>
<div
class=
"col-2 q-table__title"
>
学员管理
</div>
<q-space
/>
<div
class=
"page-option"
>
<q-btn
color=
"accent"
size=
"sm"
class=
"q-mr-md"
label=
"导出"
@
click=
"getexport()"
/>
</div>
</
template
>
<
template
v-slot:body-cell-GuestName=
"props"
>
<q-td
:props=
"props"
style=
"padding-right:0px"
>
...
...
@@ -163,7 +165,9 @@
}
from
"../../api/stuMan/index"
import
selectTree
from
"../../components/common/select-tree"
;
import
{
openURL
}
from
"quasar"
;
import
{
EduDownLoad
,
}
from
'../../api/common/common'
;
export
default
{
meta
:
{
title
:
"学员管理"
...
...
@@ -445,6 +449,12 @@
}
})
},
getexport
(){
//导出
var
msg
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
msg
));
EduDownLoad
(
"/stu/GetStudentAttendanceDayStatisticsToExcel"
,
msg
,
'学员出勤管理'
)
},
}
};
...
...
src/pages/stuMan/todaysOrder.vue
0 → 100644
View file @
412d26a0
This diff is collapsed.
Click to expand it.
src/router/routes.js
View file @
412d26a0
...
...
@@ -1056,7 +1056,11 @@ const routes = [{
component
:
()
=>
import
(
"pages/stuMan/visitorRecord"
)
},
{
path
:
"/stuMan/todaysOrder"
,
//学管 今日订单
component
:
()
=>
import
(
"pages/stuMan/todaysOrder"
)
},
],
},
...
...
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