Browse Source

auto commit

gcz 3 years ago
parent
commit
e1d27a9a19
3 changed files with 24 additions and 7 deletions
  1. 16 3
      src/views/ClassDetails.vue
  2. 3 2
      src/views/Question.vue
  3. 5 2
      src/views/StudentsDetails.vue

+ 16 - 3
src/views/ClassDetails.vue

@@ -78,7 +78,7 @@
       <div class="students-list u-flex u-row-left u-flex-wrap">
         <div
           class="students-item"
-          @click="goDetails(item.id)"
+          @click="goDetails(item.id, item)"
           v-for="item in studentsList"
           :key="item.id"
         >
@@ -192,8 +192,21 @@ export default {
           console.log(error);
         });
     },
-    goDetails(id) {
-      this.$router.push({ path: "/StudentsDetails", query: { studentId: id ,classId:this.classId} });
+    goDetails(id, item) {
+      let student = {
+        avatar: item.avatar,
+        id: item.id,
+        mobile: item.mobile,
+        name: item.name,
+      };
+      this.$router.push({
+        path: "/StudentsDetails",
+        query: {
+          studentId: id,
+          classId: this.classId,
+          student: JSON.stringify(student),
+        },
+      });
     },
     handleReleasingNotices() {
       this.releasingNoticesShow = true;

+ 3 - 2
src/views/Question.vue

@@ -6,8 +6,9 @@
       :style="{ background: 'transparent' }"
     />
     <section class="question-wrap">
-      <iframe
-        src="https://web.sdk.qcloud.com/im/demo/latest/index.html"
+      <!-- src="https://web.sdk.qcloud.com/im/demo/latest/index.html" -->
+      <iframe        
+        src="https://veterhchat.hw.hongweisoft.com/"
         class="mapFrame"
         ref="mapFrame"
       ></iframe>

+ 5 - 2
src/views/StudentsDetails.vue

@@ -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() {