lsc 13 часов назад
Родитель
Сommit
777d2a835d

+ 17 - 0
src/components/pptEasyClass/dataBoard/student.vue

@@ -0,0 +1,17 @@
+<template>
+  <div>
+    <div class="title">
+      学生分析面板
+    </div>
+  </div>
+</template>
+
+<script>
+export default {
+
+}
+</script>
+
+<style>
+
+</style>

+ 17 - 0
src/components/pptEasyClass/dataBoard/teacher.vue

@@ -0,0 +1,17 @@
+<template>
+  <div>
+    <div class="title">
+      分析面板
+    </div>
+  </div>
+</template>
+
+<script>
+export default {
+
+}
+</script>
+
+<style>
+
+</style>

+ 1 - 0
src/components/pptEasyClass/index.vue

@@ -757,6 +757,7 @@ export default {
       // }
       // }
     },
     },
     gotoCourseManage(){
     gotoCourseManage(){
+      this.doSyncClassData();
       parent.setCourseUrl();
       parent.setCourseUrl();
     },
     },
     afterClass() {
     afterClass() {

+ 1 - 0
src/components/pptEasyClass/indexPS.vue

@@ -757,6 +757,7 @@ export default {
       // }
       // }
     },
     },
     gotoCourseManage(){
     gotoCourseManage(){
+      this.doSyncClassData();
       parent.setCourseUrl();
       parent.setCourseUrl();
     },
     },
     afterClass() {
     afterClass() {

+ 14 - 0
src/router/index.js

@@ -41,6 +41,8 @@ import studyStudentE2Train from '@/components/trainCourse/easy2/studyStudent'
 import studyStudentE3Train from '@/components/trainCourse/easy3/studyStudent'
 import studyStudentE3Train from '@/components/trainCourse/easy3/studyStudent'
 import pptEasyClass from '@/components/pptEasyClass'
 import pptEasyClass from '@/components/pptEasyClass'
 import pptEasyClassPS from '@/components/pptEasyClass/indexPS'
 import pptEasyClassPS from '@/components/pptEasyClass/indexPS'
+import dataBoardStudent from '@/components/pptEasyClass/dataBoard/student'
+import dataBoardTeacher from '@/components/pptEasyClass/dataBoard/teacher'
 
 
 import cn from "../lang/cn.json";
 import cn from "../lang/cn.json";
 import hk from "../lang/hk.json";
 import hk from "../lang/hk.json";
@@ -299,6 +301,18 @@ export default new Router({
             name: 'pptEasyClassPS',
             name: 'pptEasyClassPS',
             component: pptEasyClassPS,
             component: pptEasyClassPS,
             requireAuth: ''
             requireAuth: ''
+        },
+        {
+            path: '/dataBoardStudent',
+            name: 'dataBoardStudent',
+            component: dataBoardStudent,
+            requireAuth: ''
+        },{
+            path: '/dataBoardTeacher',
+            name: 'dataBoardTeacher',
+            component: dataBoardTeacher,
+            requireAuth: ''
         }
         }
+        
     ]
     ]
 })
 })