Commit 3d68986a authored by zhengke's avatar zhengke

修改

parent 0d6e77b7
......@@ -529,9 +529,9 @@
})
},
//打开未完成学员名单
getStudent(item){
getStudent(ClassId){
this.OpenNewUrl('/stuMan/unfinishedStudent',{
'ClassId':item.ClassId
ClassId:ClassId
})
}
}
......
......@@ -94,7 +94,7 @@
},
mounted() {
if (this.$route.query && this.$route.query.ClassId) {
this.msg.ClassId = this.$route.query.ClassId
this.stuMsg.ClassId = this.$route.query.ClassId
}
this.getStudentData();
},
......@@ -102,7 +102,9 @@
//获取学员信息
getStudentData() {
this.studentList = [];
this.loading=true;
queryClassStudent(this.stuMsg).then(res => {
this.loading=false;
if (res.Code == 1) {
this.studentList = res.Data;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment