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
cb1d3119
Commit
cb1d3119
authored
Apr 06, 2022
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加筛选
parent
cab6ec1d
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
162 additions
and
35 deletions
+162
-35
dayStatic.vue
src/pages/teacher/dayStatic.vue
+41
-9
monthFirst.vue
src/pages/teacher/monthFirst.vue
+40
-8
monthSecond.vue
src/pages/teacher/monthSecond.vue
+40
-8
yearStatic.vue
src/pages/teacher/yearStatic.vue
+41
-10
No files found.
src/pages/teacher/dayStatic.vue
View file @
cb1d3119
...
...
@@ -16,16 +16,23 @@
<
template
>
<div
class=
"page-body"
>
<div
class=
"col row wrap q-mb-lg"
style=
"justify-content:space-between;"
>
<div
class=
"col-3 Sysuser_Date q-mr-lg"
>
<div
class=
"col row wrap"
>
<div
class=
"col-2 Sysuser_Date q-mr-lg"
>
<q-field
filled
dense
>
<template
v-slot:control
>
<el-date-picker
v-model=
"myDate"
style=
"width:100%"
value-format=
"yyyy-MM"
@
change=
"getCheckDate()"
size=
"small
"
type=
"month"
placeholder=
"选择年月"
>
size=
"mini
"
type=
"month"
placeholder=
"选择年月"
>
</el-date-picker>
</
template
>
</q-field>
</div>
<div>
<div
class=
"col-2"
style=
"display:none;"
>
<q-select
filled
dense
stack-label
@
input=
"getList"
option-value=
"TId"
@
filter=
"filterTeacherFn"
use-input
option-label=
"TeacherName"
v-model=
"msg.TeacherId"
ref=
"Teacher_Id"
:options=
"TeacherList"
label=
"教师团队"
class=
"col-6 q-pr-lg q-pb-lg"
emit-value
map-options
/>
</div>
</div>
<div
style=
"float:right;"
>
<q-btn
color=
"accent"
class=
"q-mr-md"
size=
"sm"
icon=
"download"
style=
"margin-top:15px;"
@
click=
"downloadStudentStatic"
label=
"下载"
/>
</div>
...
...
@@ -108,6 +115,9 @@
import
{
GetTeacherDay
}
from
'../../api/teacher/index'
;
import
{
getTeacherDropDownList
}
from
"../../api/school/index"
;
import
{
EduDownLoad
}
from
"../../api/common/common"
;
...
...
@@ -266,8 +276,12 @@
msg
:
{
YearStr
:
''
,
MonthStr
:
''
,
TeacherId
:
''
,
rowsPerPage
:
0
},
teacher
:
0
,
AllTeacherList
:[],
TeacherList
:[]
//教师数据
}
},
created
()
{
...
...
@@ -280,9 +294,27 @@
this
.
msg
.
YearStr
=
d
.
getFullYear
().
toString
();
this
.
msg
.
MonthStr
=
(
d
.
getMonth
()
+
1
).
toString
();
this
.
myDate
=
this
.
msg
.
YearStr
+
'-'
+
this
.
msg
.
MonthStr
this
.
GetTeacherList
();
this
.
getList
();
},
methods
:
{
//获取教师下拉
GetTeacherList
()
{
getTeacherDropDownList
({}).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
TeacherList
=
res
.
Data
;
this
.
AllTeacherList
=
res
.
Data
;
}
});
},
//课程教师
filterTeacherFn
(
val
,
update
,
abort
)
{
update
(()
=>
{
this
.
TeacherList
=
this
.
AllTeacherList
.
filter
(
v
=>
v
.
TeacherName
.
indexOf
(
val
)
>
-
1
);
});
},
//下载数据
downloadStudentStatic
()
{
this
.
loading
=
true
;
...
...
src/pages/teacher/monthFirst.vue
View file @
cb1d3119
...
...
@@ -7,15 +7,22 @@
<
template
>
<div>
<div
class=
"col row wrap q-mb-lg"
style=
"justify-content:space-between;"
>
<div
class=
"col-3 Sysuser_Date q-mr-lg"
>
<div
class=
"col row wrap"
>
<div
class=
"col-2 Sysuser_Date q-mr-lg"
>
<q-field
filled
dense
>
<template
v-slot:control
>
<el-date-picker
v-model=
"msg.YearStr"
@
change=
"getList"
style=
"width:100%"
value-format=
"yyyy"
size=
"small
"
<el-date-picker
v-model=
"msg.YearStr"
@
change=
"getList"
style=
"width:100%"
value-format=
"yyyy"
size=
"mini
"
type=
"year"
placeholder=
"选择年"
>
</el-date-picker>
</
template
>
</q-field>
</div>
<div
class=
"col-2"
style=
"display:none;"
>
<q-select
filled
dense
stack-label
@
input=
"getList"
option-value=
"TId"
@
filter=
"filterTeacherFn"
use-input
option-label=
"TeacherName"
v-model=
"msg.TeacherId"
ref=
"Teacher_Id"
:options=
"TeacherList"
label=
"教师团队"
class=
"col-6 q-pr-lg q-pb-lg"
emit-value
map-options
/>
</div>
</div>
<div>
<q-btn
color=
"accent"
class=
"q-mr-md"
size=
"sm"
icon=
"download"
style=
"margin-top:15px;"
@
click=
"downloadStudentStaticMonth"
label=
"下载"
/>
...
...
@@ -102,6 +109,10 @@
import
{
EduDownLoad
}
from
"../../api/common/common"
;
import
{
getTeacherDropDownList
}
from
"../../api/school/index"
;
export
default
{
props
:
{},
meta
:
{
...
...
@@ -255,8 +266,11 @@
tableHeight
:
500
,
msg
:
{
YearStr
:
''
,
TeacherId
:
''
,
rowsPerPage
:
0
},
TeacherList
:[],
AllTeacherList
:[]
}
},
created
()
{
...
...
@@ -267,9 +281,27 @@
mounted
()
{
let
d
=
new
Date
();
this
.
msg
.
YearStr
=
d
.
getFullYear
().
toString
();
this
.
GetTeacherList
();
this
.
getList
();
},
methods
:
{
//获取教师下拉
GetTeacherList
()
{
getTeacherDropDownList
({}).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
TeacherList
=
res
.
Data
;
this
.
AllTeacherList
=
res
.
Data
;
}
});
},
//课程教师
filterTeacherFn
(
val
,
update
,
abort
)
{
update
(()
=>
{
this
.
TeacherList
=
this
.
AllTeacherList
.
filter
(
v
=>
v
.
TeacherName
.
indexOf
(
val
)
>
-
1
);
});
},
downloadStudentStaticMonth
()
{
this
.
loading
=
true
;
var
msg
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
msg
));
...
...
src/pages/teacher/monthSecond.vue
View file @
cb1d3119
...
...
@@ -11,15 +11,22 @@
<
template
>
<div>
<div
class=
"col row wrap q-mb-lg"
style=
"justify-content:space-between;"
>
<div
class=
"col-3 Sysuser_Date q-mr-lg"
>
<div
class=
"col row wrap"
>
<div
class=
"col-2 Sysuser_Date q-mr-lg"
>
<q-field
filled
dense
>
<template
v-slot:control
>
<el-date-picker
v-model=
"msg.YearStr"
@
change=
"getList"
style=
"width:100%"
value-format=
"yyyy"
size=
"small
"
<el-date-picker
v-model=
"msg.YearStr"
@
change=
"getList"
style=
"width:100%"
value-format=
"yyyy"
size=
"mini
"
type=
"year"
placeholder=
"选择年"
>
</el-date-picker>
</
template
>
</q-field>
</div>
<div
class=
"col-2"
style=
"display:none;"
>
<q-select
filled
dense
stack-label
@
input=
"getList"
option-value=
"TId"
@
filter=
"filterTeacherFn"
use-input
option-label=
"TeacherName"
v-model=
"msg.TeacherId"
ref=
"Teacher_Id"
:options=
"TeacherList"
label=
"教师团队"
class=
"col-6 q-pr-lg q-pb-lg"
emit-value
map-options
/>
</div>
</div>
<div>
<q-btn
color=
"accent"
class=
"q-mr-md"
size=
"sm"
icon=
"download"
style=
"margin-top:15px;"
label=
"下载"
@
click=
"downloadStudentStaticMonthRate"
/>
...
...
@@ -107,6 +114,9 @@
import
{
EduDownLoad
}
from
"../../api/common/common"
;
import
{
getTeacherDropDownList
}
from
"../../api/school/index"
;
export
default
{
props
:
{},
meta
:
{
...
...
@@ -121,6 +131,7 @@
tableHeight
:
500
,
msg
:
{
YearStr
:
''
,
TeacherId
:
''
,
rowsPerPage
:
0
},
columns
:
[{
...
...
@@ -208,6 +219,8 @@
align
:
'left'
}
],
TeacherList
:[],
AllTeacherList
:[]
}
},
created
()
{
...
...
@@ -218,9 +231,28 @@
mounted
()
{
let
d
=
new
Date
();
this
.
msg
.
YearStr
=
d
.
getFullYear
().
toString
();
this
.
GetTeacherList
();
this
.
getList
();
},
methods
:
{
//获取教师下拉
GetTeacherList
()
{
getTeacherDropDownList
({}).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
TeacherList
=
res
.
Data
;
this
.
AllTeacherList
=
res
.
Data
;
}
});
},
//课程教师
filterTeacherFn
(
val
,
update
,
abort
)
{
update
(()
=>
{
this
.
TeacherList
=
this
.
AllTeacherList
.
filter
(
v
=>
v
.
TeacherName
.
indexOf
(
val
)
>
-
1
);
});
},
//下载文件
downloadStudentStaticMonthRate
()
{
this
.
loading
=
true
;
...
...
src/pages/teacher/yearStatic.vue
View file @
cb1d3119
...
...
@@ -4,16 +4,23 @@
<q-tab
:ripple=
"false"
:name=
"1"
label=
"年份统计"
/>
<q-tab
:ripple=
"false"
:name=
"2"
label=
"成长率"
/>
</q-tabs>
<div
class=
"col row wrap q-mb-lg"
>
<div
class=
"col-3 Sysuser_Date q-mr-lg"
style=
"display:none;"
>
<div
class=
"col row wrap q-mb-lg"
style=
"justify-content:space-between;"
>
<div
class=
"col row wrap"
style=
"display:none;"
>
<div
class=
"col-2 Sysuser_Date q-mr-lg"
>
<q-field
filled
dense
>
<template
v-slot:control
>
<el-date-picker
v-model=
"msg.YearStr"
@
change=
"getList"
style=
"width:100%"
value-format=
"yyyy"
size=
"small
"
<el-date-picker
v-model=
"msg.YearStr"
@
change=
"getList"
style=
"width:100%"
value-format=
"yyyy"
size=
"mini
"
type=
"year"
placeholder=
"选择年"
>
</el-date-picker>
</
template
>
</q-field>
</div>
<div
class=
"col-2"
>
<q-select
filled
dense
stack-label
@
input=
"getList"
option-value=
"TId"
@
filter=
"filterTeacherFn"
use-input
option-label=
"TeacherName"
v-model=
"msg.TeacherId"
ref=
"Teacher_Id"
:options=
"TeacherList"
label=
"教师团队"
class=
"col-6 q-pr-lg q-pb-lg"
emit-value
map-options
/>
</div>
</div>
<div>
<q-btn
color=
"accent"
class=
"q-mr-md"
size=
"sm"
icon=
"download"
style=
"margin-top:15px;"
label=
"下载"
@
click=
"downloadStudentStaticYear"
/>
...
...
@@ -31,6 +38,9 @@
GetTeacherStaticYear
,
GetTeacherStaticYearRate
}
from
'../../api/teacher/index'
;
import
{
getTeacherDropDownList
}
from
"../../api/school/index"
;
export
default
{
props
:
{},
...
...
@@ -46,8 +56,11 @@
dataList
:
[],
msg
:
{
YearStr
:
''
,
TeacherId
:
''
,
rowsPerPage
:
0
}
},
TeacherList
:[],
AllTeacherList
:[]
}
},
created
()
{
...
...
@@ -56,9 +69,27 @@
mounted
()
{
let
d
=
new
Date
();
this
.
msg
.
YearStr
=
d
.
getFullYear
().
toString
();
this
.
GetTeacherList
();
this
.
getList
();
},
methods
:
{
//获取教师下拉
GetTeacherList
()
{
getTeacherDropDownList
({}).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
TeacherList
=
res
.
Data
;
this
.
AllTeacherList
=
res
.
Data
;
}
});
},
//课程教师
filterTeacherFn
(
val
,
update
,
abort
)
{
update
(()
=>
{
this
.
TeacherList
=
this
.
AllTeacherList
.
filter
(
v
=>
v
.
TeacherName
.
indexOf
(
val
)
>
-
1
);
});
},
//下载文件
downloadStudentStaticYear
()
{
this
.
loading
=
true
;
...
...
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