|
@@ -5,7 +5,18 @@
|
|
|
<div class="student_head">
|
|
|
<div
|
|
|
class="return"
|
|
|
- @click.stop="goTo('/index?userid=' + userid + '&oid=' + oid)"
|
|
|
+ @click.stop="
|
|
|
+ goTo(
|
|
|
+ '/index?userid=' +
|
|
|
+ userid +
|
|
|
+ '&oid=' +
|
|
|
+ oid +
|
|
|
+ '&cid=' +
|
|
|
+ classId +
|
|
|
+ '&tType=' +
|
|
|
+ tType
|
|
|
+ )
|
|
|
+ "
|
|
|
>
|
|
|
返回
|
|
|
<!-- <img src="../assets/icon/return.png" alt="" /> -->
|
|
@@ -169,6 +180,7 @@ export default {
|
|
|
id: this.$route.query.courseId,
|
|
|
userid: this.$route.query.userid,
|
|
|
oid: this.$route.query.oid,
|
|
|
+ classId: this.$route.query.cid,
|
|
|
tType: this.$route.query.tType,
|
|
|
courseDetail: {},
|
|
|
aStudentName: [],
|
|
@@ -232,6 +244,8 @@ export default {
|
|
|
this.userid +
|
|
|
"&oid=" +
|
|
|
this.oid +
|
|
|
+ "&cid=" +
|
|
|
+ this.classId +
|
|
|
"&tType=" +
|
|
|
this.tType
|
|
|
);
|