Commit 3d68986a authored by zhengke's avatar zhengke

修改

parent 0d6e77b7
...@@ -529,9 +529,9 @@ ...@@ -529,9 +529,9 @@
}) })
}, },
//打开未完成学员名单 //打开未完成学员名单
getStudent(item){ getStudent(ClassId){
this.OpenNewUrl('/stuMan/unfinishedStudent',{ this.OpenNewUrl('/stuMan/unfinishedStudent',{
'ClassId':item.ClassId ClassId:ClassId
}) })
} }
} }
......
...@@ -94,7 +94,7 @@ ...@@ -94,7 +94,7 @@
}, },
mounted() { mounted() {
if (this.$route.query && this.$route.query.ClassId) { if (this.$route.query && this.$route.query.ClassId) {
this.msg.ClassId = this.$route.query.ClassId this.stuMsg.ClassId = this.$route.query.ClassId
} }
this.getStudentData(); this.getStudentData();
}, },
...@@ -102,7 +102,9 @@ ...@@ -102,7 +102,9 @@
//获取学员信息 //获取学员信息
getStudentData() { getStudentData() {
this.studentList = []; this.studentList = [];
this.loading=true;
queryClassStudent(this.stuMsg).then(res => { queryClassStudent(this.stuMsg).then(res => {
this.loading=false;
if (res.Code == 1) { if (res.Code == 1) {
this.studentList = res.Data; 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