|
@@ -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>
|