From db7b0541b3fbecaeda7b44129b7af3215296ec6d Mon Sep 17 00:00:00 2001
From: zhouwx <1175765986@qq.com>
Date: 星期三, 06 十一月 2024 13:55:27 +0800
Subject: [PATCH] 修改

---
 src/views/onlineEducation/studentSupervision/index.vue |   13 ++++++-------
 1 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/src/views/onlineEducation/studentSupervision/index.vue b/src/views/onlineEducation/studentSupervision/index.vue
index 00eff9d..555b8da 100644
--- a/src/views/onlineEducation/studentSupervision/index.vue
+++ b/src/views/onlineEducation/studentSupervision/index.vue
@@ -72,7 +72,7 @@
       width="900px"
       append-to-body
       :before-close="handleCloseLearning">
-      <learning-record ref="learnRef" ></learning-record>
+      <learning ref="learnRef" ></learning>
     </el-dialog>
     <el-dialog
       title="考试记录"
@@ -81,15 +81,15 @@
       :close-on-click-modal="false"
       width="900px"
       :before-close="handleClose">
-      <exam-manage ref="examRef" ></exam-manage>
+      <examRecord ref="examRef" ></examRecord>
     </el-dialog>
 
   </div>
 </template>
 
 <script>
-import examManage from '@/views/onlineEducation/examManage/index.vue'
-import learningRecord from '@/views/onlineEducation/learnRecord/index.vue'
+import examRecord from '../studentSupervision/compontents/examlRecord.vue'
+import learning from '../studentSupervision/compontents/learningRecord.vue'
 import { listStudent } from '@/api/onlineEducation/student'
 import noPic from '@/assets/images/none.png'
 import Cookies from 'js-cookie'
@@ -97,7 +97,7 @@
 export default {
   name: "nPeopleManage",
   dicts: [],
-  components: {learningRecord,examManage},
+  components: {learning,examRecord},
   data() {
     return {
       loading: false,
@@ -130,8 +130,7 @@
           this.expertList = res.rows.map(item => {
             return {
               ...item,
-              authPhoto: item.authPhoto !='-' ? item.authPhoto : noPic
-
+              authPhoto: item.authPhoto !='-' ? item.authPhoto : noPic,
             }
           })
           this.total = res.total

--
Gitblit v1.9.2