diff --git a/src/views/manage/TeacherList.vue b/src/views/manage/TeacherList.vue
index 15b03792..b41d83a9 100644
--- a/src/views/manage/TeacherList.vue
+++ b/src/views/manage/TeacherList.vue
@@ -16,11 +16,11 @@
-
+
搜索
重置
@@ -48,7 +48,7 @@
-
+
@@ -146,12 +146,24 @@
-
-
- 未认证
- 已认证
-
-
+
+
+
+
+ 未认证
+ 已认证
+
+
+
+
+
+
+ 在职
+ 离职
+
+
+
+
@@ -194,7 +206,7 @@
tlevelId:'',
name:'',
salaryId:'',
- waitStatus:'',
+ waitStatus:0,
status:'',
certStatus:'',
pageIndex: 1,
@@ -282,7 +294,6 @@
methods:{
getPayrollPlace(){
teacherBoeApi.getPayrollPlace().then(res=>{
- // console.log(res,'res');
if(res.status == '200') {
for(let i in res.result){
this.placeList.push({
@@ -389,7 +400,6 @@
this.dialogVisible=true
},
filterChange(e){
- console.log(e,e.key,"测试");
if(e.waitStatus){
if(e.waitStatus.length==0 || e.waitStatus.length==2){
this.query.waitStatus='';
@@ -409,17 +419,13 @@
},
filterWork(value,row){
this.query.waitStatus=value;
- console.log(value,row.waitStatus,'waitStatus');
- //this.loadData(1);
return row.waitStatus==value
},
filterCertification(value,row){
- console.log(row.certificationStatus,value,"certStatus")
this.query.certStatus=value;
return row.certStatus==value
},
filterStatus(value,row){
- console.log(row.status,value,"status");
this.query.status=value;
return row.status==value
},