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
f03952be
Commit
f03952be
authored
Apr 20, 2022
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
0dd82f8c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
3 deletions
+19
-3
appraisalList.vue
src/pages/teacher/appraisalList.vue
+19
-3
No files found.
src/pages/teacher/appraisalList.vue
View file @
f03952be
...
...
@@ -17,6 +17,10 @@
</
template
>
</q-field>
</div>
<div
class=
"col-2"
>
<q-select
filled
v-model=
"msg.TeacherAccountId"
dense
use-input
label=
"教师"
:options=
"MyTeacherListData"
option-label=
"EmployeeName"
@
input=
"refreshPage"
clearable
option-value=
"Id"
emit-value
map-options
/>
</div>
</div>
<div
class=
"page-content"
>
<q-table
:pagination=
"msg"
:loading=
"loading"
no-data-label=
"暂无相关数据"
flat
...
...
@@ -67,6 +71,9 @@
queryTeacherAssessmentPage
,
SubmitTeacherAssessmentApproval
}
from
'../../api/teacher/index'
;
import
{
queryEmployee
,
}
from
"../../api/users/user"
;
import
behaviorForm
from
"../../components/teacher/behavior-form.vue"
;
import
helpForm
from
"../../components/teacher/help-form.vue"
;
export
default
{
...
...
@@ -142,6 +149,7 @@
isShowBehavior
:
false
,
//是否显示对员工评价弹窗
isShowHelp
:
false
,
//是否显示员工对公司建议弹窗
objOption
:
null
,
MyTeacherListData
:
[],
//教师列表
}
},
created
()
{
...
...
@@ -149,14 +157,22 @@
this
.
msg
.
YearStr
=
today
.
getFullYear
().
toString
();
this
.
msg
.
MonthStr
=
(
today
.
getMonth
()
+
1
).
toString
();
this
.
queryDate
=
this
.
msg
.
YearStr
+
'-'
+
this
.
msg
.
MonthStr
;
if
(
this
.
$route
.
query
)
{
}
this
.
findData
();
},
mounted
()
{
this
.
getTeacherAssessmentPage
()
},
methods
:
{
findData
()
{
queryEmployee
({
AccountTypeStr
:
"2"
,
IsLeave
:
1
}).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
MyTeacherListData
=
res
.
Data
;
}
})
},
//翻页
changePage
(
val
)
{
this
.
msg
.
pageIndex
=
val
;
...
...
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