lsc 1 year ago
parent
commit
e57e687886

+ 138 - 0
src/components/pages/dataBoard/course/index.vue

@@ -0,0 +1,138 @@
+<template>
+  <div class="body">
+    <!-- 课程数据 -->
+    <div class="left">
+      <div class="top">
+        <div class="titleBox">
+          <div class="title">使用频次</div>
+        </div>
+        <div class="dataBox"></div>
+      </div>
+      <div class="bottom">
+        <div class="titleBox">
+          <div class="title">工具使用</div>
+        </div>
+        <div class="dataBox"></div>
+      </div>
+    </div>
+    <div class="center">
+      <div class="top">
+        <div class="titleBox">
+          <div class="title">课程数量</div>
+        </div>
+        <div class="dataBox"></div>
+      </div>
+      <div class="bottom">
+        <div class="titleBox">
+          <div class="title">课程时间分布</div>
+        </div>
+        <div class="dataBox"></div>
+      </div>
+    </div>
+    <div class="right">
+      <div class="top">
+        <div class="titleBox">
+          <div class="title">课程参与</div>
+        </div>
+        <div class="dataBox"></div>
+      </div>
+      <div class="bottom">
+        <div class="titleBox">
+          <div class="title">学习时长</div>
+        </div>
+        <div class="dataBox"></div>
+      </div>
+    </div>
+  </div>
+</template>
+
+<script>
+export default {
+
+}
+</script>
+
+<style scoped>
+.body {
+  width: 100%;
+  height: 100%;
+  display: flex;
+  padding: 20px;
+  box-sizing: border-box;
+}
+
+.left {
+  width: calc(100% / 4 * 1);
+  height: 100%;
+}
+
+.left>.top {
+  width: 100%;
+  height: calc(100% / 2 - 10px);
+  background: #fff;
+  border-radius: 5px;
+  margin: 0 0 20px 0;
+}
+
+.left>.bottom {
+  width: 100%;
+  height: calc(100% / 2 - 10px);
+  background: #fff;
+  border-radius: 5px;
+}
+
+.center {
+  width: calc(100% / 4 * 2 - 40px);
+  height: 100%;
+  margin: 0 20px;
+}
+
+.center>.top {
+  width: 100%;
+  height: calc(100% / 5 * 3 - 10px);
+  background: #fff;
+  border-radius: 5px;
+  margin: 0 0 20px 0;
+}
+
+.center>.bottom {
+  width: 100%;
+  height: calc(100% / 5 * 2 - 10px);
+  background: #fff;
+  border-radius: 5px;
+}
+
+.right {
+  width: calc(100% / 4 * 1);
+  height: 100%;
+
+}
+
+.right>.top {
+  width: 100%;
+  height: calc(100% / 2 - 10px);
+  background: #fff;
+  border-radius: 5px;
+  margin: 0 0 20px 0;
+}
+
+.right>.bottom {
+  width: 100%;
+  height: calc(100% / 2 - 10px);
+  background: #fff;
+  border-radius: 5px;
+}
+
+.titleBox {
+  height: 40px;
+  display: flex;
+  align-items: center;
+  padding: 0 15px;
+  width: 100%;
+}
+
+.dataBox {
+  height: calc(100% - 40px);
+  width: 100%;
+}
+</style>

+ 92 - 0
src/components/pages/dataBoard/index.vue

@@ -0,0 +1,92 @@
+<template>
+  <div class="body">
+    <div class="db_header">
+      <div class="db_check">
+        <div :class="{ active: type == 1 }" @click="setType(1)">综合数据</div>
+        <div :class="{ active: type == 2 }" @click="setType(2)">课程数据</div>
+        <div :class="{ active: type == 3 }" @click="setType(3)">学生数据</div>
+        <div :class="{ active: type == 4 }" @click="setType(4)">教师数据</div>
+      </div>
+    </div>
+    <div class="db_body">
+      <school v-if="type == 1" :oid="oid"></school>
+      <course v-if="type == 2" :oid="oid"></course>
+      <student v-if="type == 3" :oid="oid"></student>
+      <teacher v-if="type == 4" :oid="oid"></teacher>
+    </div>
+  </div>
+</template>
+
+<script>
+import school from './school'
+import course from './course'
+import student from './student'
+import teacher from './teacher'
+export default {
+  components: {
+    school,
+    course,
+    student,
+    teacher,
+  },
+  data() {
+    return {
+      type: 1,
+      oid: this.$route.query.oid,
+    }
+  },
+  methods: {
+    setType(type) {
+      this.type = type
+    }
+  },
+}
+</script>
+
+<style scoped>
+.body {
+  height: 100%;
+  width: 100%;
+  min-width: 1200px;
+  min-height: 750px;
+}
+
+.db_header {
+  width: 100%;
+  height: 50px;
+  display: flex;
+  justify-content: center;
+  position: relative;
+  background: #fff;
+  align-items: center;
+}
+
+.db_check {
+  display: flex;
+  align-items: center;
+}
+
+.db_check>div {
+  color: #a8a8a8;
+  padding: 8px 20px;
+  border-radius: 4px;
+  cursor: pointer;
+}
+
+.db_check>div.active {
+  font-weight: 700;
+  color: #000;
+  background: rgb(231, 242, 252);
+}
+
+.db_check>div+div {
+  margin-left: 30px;
+}
+
+.db_body {
+  height: calc(100% - 50px);
+  width: 100%;
+  overflow: auto;
+  background: rgb(231, 242, 252);
+}
+</style>

+ 139 - 0
src/components/pages/dataBoard/school/index.vue

@@ -0,0 +1,139 @@
+<template>
+  <div class="body">
+    <!-- 综合数据 -->
+    <div class="left">
+      <div class="top">
+        <div class="titleBox">
+          <div class="title">基础概况</div>
+        </div>
+        <div class="dataBox"></div>
+      </div>
+      <div class="bottom">
+        <div class="titleBox">
+          <div class="title">在线时长</div>
+        </div>
+        <div class="dataBox"></div>
+      </div>
+    </div>
+    <div class="center">
+      <div class="top">
+        <div class="titleBox">
+          <div class="title">课程数量</div>
+        </div>
+        <div class="dataBox"></div>
+      </div>
+      <div class="bottom">
+        <div class="titleBox">
+          <div class="title">平台使用深度</div>
+        </div>
+        <div class="dataBox"></div>
+      </div>
+    </div>
+    <div class="right">
+      <div class="top">
+        <div class="titleBox">
+          <div class="title">教师综合评价</div>
+        </div>
+        <div class="dataBox"></div>
+      </div>
+      <div class="bottom">
+        <div class="titleBox">
+          <div class="title">学生综合评价</div>
+        </div>
+        <div class="dataBox"></div>
+      </div>
+    </div>
+  </div>
+</template>
+
+<script>
+export default {
+
+}
+</script>
+
+
+<style scoped>
+.body {
+  width: 100%;
+  height: 100%;
+  display: flex;
+  padding: 20px;
+  box-sizing: border-box;
+}
+
+.left {
+  width: calc(100% / 4 * 1);
+  height: 100%;
+}
+
+.left>.top {
+  width: 100%;
+  height: calc(100% / 2 - 10px);
+  background: #fff;
+  border-radius: 5px;
+  margin: 0 0 20px 0;
+}
+
+.left>.bottom {
+  width: 100%;
+  height: calc(100% / 2 - 10px);
+  background: #fff;
+  border-radius: 5px;
+}
+
+.center {
+  width: calc(100% / 4 * 2 - 40px);
+  height: 100%;
+  margin: 0 20px;
+}
+
+.center>.top {
+  width: 100%;
+  height: calc(100% / 5 * 3 - 10px);
+  background: #fff;
+  border-radius: 5px;
+  margin: 0 0 20px 0;
+}
+
+.center>.bottom {
+  width: 100%;
+  height: calc(100% / 5 * 2 - 10px);
+  background: #fff;
+  border-radius: 5px;
+}
+
+.right {
+  width: calc(100% / 4 * 1);
+  height: 100%;
+
+}
+
+.right>.top {
+  width: 100%;
+  height: calc(100% / 2 - 10px);
+  background: #fff;
+  border-radius: 5px;
+  margin: 0 0 20px 0;
+}
+
+.right>.bottom {
+  width: 100%;
+  height: calc(100% / 2 - 10px);
+  background: #fff;
+  border-radius: 5px;
+}
+
+.titleBox {
+  height: 40px;
+  display: flex;
+  align-items: center;
+  padding: 0 15px;
+  width: 100%;
+}
+
+.dataBox {
+  height: calc(100% - 40px);
+  width: 100%;
+}
+</style>

+ 139 - 0
src/components/pages/dataBoard/student/index.vue

@@ -0,0 +1,139 @@
+<template>
+  <div class="body">
+    <!-- 学生数据 -->
+    <div class="left">
+      <div class="top">
+        <div class="titleBox">
+          <div class="title">标题</div>
+        </div>
+        <div class="dataBox"></div>
+      </div>
+      <div class="bottom">
+        <div class="titleBox">
+          <div class="title">标题</div>
+        </div>
+        <div class="dataBox"></div>
+      </div>
+    </div>
+    <div class="center">
+      <div class="top">
+        <div class="titleBox">
+          <div class="title">标题</div>
+        </div>
+        <div class="dataBox"></div>
+      </div>
+      <div class="bottom">
+        <div class="titleBox">
+          <div class="title">标题</div>
+        </div>
+        <div class="dataBox"></div>
+      </div>
+    </div>
+    <div class="right">
+      <div class="top">
+        <div class="titleBox">
+          <div class="title">标题</div>
+        </div>
+        <div class="dataBox"></div>
+      </div>
+      <div class="bottom">
+        <div class="titleBox">
+          <div class="title">标题</div>
+        </div>
+        <div class="dataBox"></div>
+      </div>
+    </div>
+  </div>
+</template>
+
+<script>
+export default {
+
+}
+</script>
+
+
+<style scoped>
+.body {
+  width: 100%;
+  height: 100%;
+  display: flex;
+  padding: 20px;
+  box-sizing: border-box;
+}
+
+.left {
+  width: calc(100% / 4 * 1);
+  height: 100%;
+}
+
+.left>.top {
+  width: 100%;
+  height: calc(100% / 2 - 10px);
+  background: #fff;
+  border-radius: 5px;
+  margin: 0 0 20px 0;
+}
+
+.left>.bottom {
+  width: 100%;
+  height: calc(100% / 2 - 10px);
+  background: #fff;
+  border-radius: 5px;
+}
+
+.center {
+  width: calc(100% / 4 * 2 - 40px);
+  height: 100%;
+  margin: 0 20px;
+}
+
+.center>.top {
+  width: 100%;
+  height: calc(100% / 5 * 3 - 10px);
+  background: #fff;
+  border-radius: 5px;
+  margin: 0 0 20px 0;
+}
+
+.center>.bottom {
+  width: 100%;
+  height: calc(100% / 5 * 2 - 10px);
+  background: #fff;
+  border-radius: 5px;
+}
+
+.right {
+  width: calc(100% / 4 * 1);
+  height: 100%;
+
+}
+
+.right>.top {
+  width: 100%;
+  height: calc(100% / 2 - 10px);
+  background: #fff;
+  border-radius: 5px;
+  margin: 0 0 20px 0;
+}
+
+.right>.bottom {
+  width: 100%;
+  height: calc(100% / 2 - 10px);
+  background: #fff;
+  border-radius: 5px;
+}
+
+.titleBox {
+  height: 40px;
+  display: flex;
+  align-items: center;
+  padding: 0 15px;
+  width: 100%;
+}
+
+.dataBox {
+  height: calc(100% - 40px);
+  width: 100%;
+}
+</style>

+ 139 - 0
src/components/pages/dataBoard/teacher/index.vue

@@ -0,0 +1,139 @@
+<template>
+  <div class="body">
+    <!-- 教师数据 -->
+    <div class="left">
+      <div class="top">
+        <div class="titleBox">
+          <div class="title">基础概况</div>
+        </div>
+        <div class="dataBox"></div>
+      </div>
+      <div class="bottom">
+        <div class="titleBox">
+          <div class="title">教师活跃度</div>
+        </div>
+        <div class="dataBox"></div>
+      </div>
+    </div>
+    <div class="center">
+      <div class="top">
+        <div class="titleBox">
+          <div class="title">教师行为数据</div>
+        </div>
+        <div class="dataBox"></div>
+      </div>
+      <div class="bottom">
+        <div class="titleBox">
+          <div class="title">平台使用深度</div>
+        </div>
+        <div class="dataBox"></div>
+      </div>
+    </div>
+    <div class="right">
+      <div class="top">
+        <div class="titleBox">
+          <div class="title">教学活动</div>
+        </div>
+        <div class="dataBox"></div>
+      </div>
+      <div class="bottom">
+        <div class="titleBox">
+          <div class="title">在线时长</div>
+        </div>
+        <div class="dataBox"></div>
+      </div>
+    </div>
+  </div>
+</template>
+
+<script>
+export default {
+
+}
+</script>
+
+
+<style scoped>
+.body {
+  width: 100%;
+  height: 100%;
+  display: flex;
+  padding: 20px;
+  box-sizing: border-box;
+}
+
+.left {
+  width: calc(100% / 4 * 1);
+  height: 100%;
+}
+
+.left>.top {
+  width: 100%;
+  height: calc(100% / 2 - 10px);
+  background: #fff;
+  border-radius: 5px;
+  margin: 0 0 20px 0;
+}
+
+.left>.bottom {
+  width: 100%;
+  height: calc(100% / 2 - 10px);
+  background: #fff;
+  border-radius: 5px;
+}
+
+.center {
+  width: calc(100% / 4 * 2 - 40px);
+  height: 100%;
+  margin: 0 20px;
+}
+
+.center>.top {
+  width: 100%;
+  height: calc(100% / 5 * 3 - 10px);
+  background: #fff;
+  border-radius: 5px;
+  margin: 0 0 20px 0;
+}
+
+.center>.bottom {
+  width: 100%;
+  height: calc(100% / 5 * 2 - 10px);
+  background: #fff;
+  border-radius: 5px;
+}
+
+.right {
+  width: calc(100% / 4 * 1);
+  height: 100%;
+
+}
+
+.right>.top {
+  width: 100%;
+  height: calc(100% / 2 - 10px);
+  background: #fff;
+  border-radius: 5px;
+  margin: 0 0 20px 0;
+}
+
+.right>.bottom {
+  width: 100%;
+  height: calc(100% / 2 - 10px);
+  background: #fff;
+  border-radius: 5px;
+}
+
+.titleBox {
+  height: 40px;
+  display: flex;
+  align-items: center;
+  padding: 0 15px;
+  width: 100%;
+}
+
+.dataBox {
+  height: calc(100% - 40px);
+  width: 100%;
+}
+</style>

+ 10 - 1
src/router/index.js

@@ -94,6 +94,8 @@ import lookModel from '@/components/pages/learnAnalysis/components/lookModel'
 import teacherSource from '@/components/pages/teacherSource/index'
 import addCourseE from '@/components/pages/easy/addCourse'
 import addCourseT from '@/components/pages/task/addCourse'
+import dataBoard from '@/components/pages/dataBoard'
+
 
 // 全局修改默认配置,点击空白处不能关闭弹窗
 ElementUI.Dialog.props.closeOnClickModal.default = false
@@ -813,6 +815,13 @@ export default new Router({
                 requireAuth: '' // 不需要鉴权
             }
         },
-        
+        {
+            path: '/dataBoard',
+            name: 'dataBoard',
+            component: dataBoard,
+            meta: {
+                requireAuth: '' // 不需要鉴权
+            }
+        }        
     ]
 })