|
@@ -3,7 +3,7 @@
|
|
|
<NavBar title="学生详情" :backUrl="backUrl" />
|
|
|
<section class="base-info">
|
|
|
<img :src="studentInfo.avatar || defaultAvatar" alt="" class="img" />
|
|
|
- <div class="name">{{ studentInfo.nickName || studentInfo.userName }}</div>
|
|
|
+ <div class="name">{{ studentInfo.name || studentInfo.userName }}</div>
|
|
|
<div class="course" v-if="studentInfo.schoolName">
|
|
|
({{ studentInfo.schoolName }})
|
|
|
</div>
|
|
@@ -53,7 +53,10 @@ export default {
|
|
|
this.classId = this.$route.query.classId;
|
|
|
this.studentId = this.$route.query.studentId;
|
|
|
this.backUrl = `/ClassDetails?id=${this.classId}`;
|
|
|
- this.getStudentInfo();
|
|
|
+ //使用接口方式获取学生信息
|
|
|
+ // this.getStudentInfo();
|
|
|
+
|
|
|
+ this.studentInfo = JSON.parse( this.$route.query.student);
|
|
|
},
|
|
|
methods: {
|
|
|
getStudentInfo() {
|