|
@@ -6,7 +6,27 @@
|
|
|
<div class="titleBox">
|
|
|
<div class="title">基础概况</div>
|
|
|
</div>
|
|
|
- <div class="dataBox"></div>
|
|
|
+ <div class="dataBox">
|
|
|
+ <div class="info_box">
|
|
|
+ <div class="info blueBG">
|
|
|
+ <span>学生总数</span>
|
|
|
+ <span>15620</span>
|
|
|
+ </div>
|
|
|
+ <div class="info greenBG">
|
|
|
+ <span>周使用频次</span>
|
|
|
+ <span>15620</span>
|
|
|
+ </div>
|
|
|
+ <div class="info blueBG">
|
|
|
+ <span>登录频次</span>
|
|
|
+ <span>15620</span>
|
|
|
+ </div>
|
|
|
+ <div class="info greenBG">
|
|
|
+ <span>人均使用频次</span>
|
|
|
+ <span>15620</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <loginCount style="height: calc(100% - 140px);"></loginCount>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div class="bottom">
|
|
|
<div class="titleBox">
|
|
@@ -20,13 +40,52 @@
|
|
|
<div class="titleBox">
|
|
|
<div class="title">学生综合评价</div>
|
|
|
</div>
|
|
|
- <div class="dataBox"></div>
|
|
|
+ <div class="dataBox">
|
|
|
+ <div class="info_box" style="width:95%;justify-content: flex-start;">
|
|
|
+ <div class="info2 blueBG">
|
|
|
+ <span>学生总数</span>
|
|
|
+ <span>15620</span>
|
|
|
+ </div>
|
|
|
+ <div class="info2 greenBG">
|
|
|
+ <span>班级总数</span>
|
|
|
+ <span>15620</span>
|
|
|
+ </div>
|
|
|
+ <div class="info2 blueBG">
|
|
|
+ <span>平均得分</span>
|
|
|
+ <span>15620</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <studentInfo style="height: calc(100% - 70px);"></studentInfo>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div class="bottom">
|
|
|
<div class="titleBox">
|
|
|
<div class="title">平台使用深度</div>
|
|
|
</div>
|
|
|
- <div class="dataBox"></div>
|
|
|
+ <div class="dataBox">
|
|
|
+ <div class="depth_box">
|
|
|
+ <div class="depth">
|
|
|
+ <span>参与课程</span>
|
|
|
+ <div><el-progress :width="90" type="circle" :percentage="36" :stroke-width="15" :format="format"></el-progress></div>
|
|
|
+ </div>
|
|
|
+ <div class="depth">
|
|
|
+ <span>参与项目</span>
|
|
|
+ <div><el-progress :width="90" type="circle" :percentage="76" :stroke-width="15" :format="format"></el-progress></div>
|
|
|
+ </div>
|
|
|
+ <div class="depth">
|
|
|
+ <span>使用工具</span>
|
|
|
+ <div><el-progress :width="90" type="circle" :percentage="76" :stroke-width="15" :format="format"></el-progress></div>
|
|
|
+ </div>
|
|
|
+ <div class="depth">
|
|
|
+ <span>协同合作</span>
|
|
|
+ <div><el-progress :width="90" type="circle" :percentage="76" :stroke-width="15" :format="format"></el-progress></div>
|
|
|
+ </div>
|
|
|
+ <div class="depth">
|
|
|
+ <span>互动交流</span>
|
|
|
+ <div><el-progress :width="90" type="circle" :percentage="76" :stroke-width="15" :format="format"></el-progress></div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="right">
|
|
@@ -34,21 +93,46 @@
|
|
|
<div class="titleBox">
|
|
|
<div class="title">学生综合评价分布</div>
|
|
|
</div>
|
|
|
- <div class="dataBox"></div>
|
|
|
+ <div class="dataBox">
|
|
|
+ <studentInfo2></studentInfo2>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div class="bottom">
|
|
|
<div class="titleBox">
|
|
|
<div class="title">在线时长</div>
|
|
|
</div>
|
|
|
- <div class="dataBox"></div>
|
|
|
+ <div class="dataBox">
|
|
|
+ <div class="info_box">
|
|
|
+ <div class="info blueBG">
|
|
|
+ <span>累计在线时长</span>
|
|
|
+ <span>15620</span>
|
|
|
+ </div>
|
|
|
+ <div class="info greenBG">
|
|
|
+ <span>学生在线平均时长</span>
|
|
|
+ <span>15620</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <loginTime style="height:calc(100% - 70px)"></loginTime>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-export default {
|
|
|
+import loginCount from './loginCount'
|
|
|
+import studentInfo from './studentInfo'
|
|
|
+import studentInfo2 from './studentInfo2'
|
|
|
+import loginTime from './loginTime'
|
|
|
|
|
|
+export default {
|
|
|
+ components: {
|
|
|
+ loginCount,studentInfo,studentInfo2,loginTime
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ }
|
|
|
+ },
|
|
|
}
|
|
|
</script>
|
|
|
|
|
@@ -136,4 +220,108 @@ export default {
|
|
|
height: calc(100% - 40px);
|
|
|
width: 100%;
|
|
|
}
|
|
|
+
|
|
|
+.titleBox {
|
|
|
+ height: 40px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ padding: 0 15px;
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.titleBox>.title {
|
|
|
+ font-weight: 700;
|
|
|
+}
|
|
|
+
|
|
|
+.dataBox {
|
|
|
+ height: calc(100% - 40px);
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.info_box {
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ width: 90%;
|
|
|
+ margin: 0 auto;
|
|
|
+}
|
|
|
+
|
|
|
+.info_box>.info2,
|
|
|
+.info_box>.info3,
|
|
|
+.info_box>.info {
|
|
|
+ width: calc(50% - 10px);
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ height: 60px;
|
|
|
+ justify-content: center;
|
|
|
+ padding: 0 10px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ border-radius: 5px;
|
|
|
+}
|
|
|
+
|
|
|
+.info_box>.info2 {
|
|
|
+ width: calc(100%/4 - 10px);
|
|
|
+ align-items: flex-end;
|
|
|
+ margin-right: 10px;
|
|
|
+}
|
|
|
+
|
|
|
+.info_box>.info3 {
|
|
|
+ width: 100%;
|
|
|
+ margin-bottom: 5px;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+.info_box>.info2>span:nth-child(1),
|
|
|
+.info_box>.info3>span:nth-child(1),
|
|
|
+.info_box>.info>span:nth-child(1) {
|
|
|
+ font-size: 12px;
|
|
|
+ margin: 0 0 5px 0;
|
|
|
+}
|
|
|
+
|
|
|
+.info_box>.info2>span:nth-child(2),
|
|
|
+.info_box>.info3>span:nth-child(2),
|
|
|
+.info_box>.info>span:nth-child(2) {
|
|
|
+ font-size: 22px;
|
|
|
+ font-weight: 700;
|
|
|
+}
|
|
|
+
|
|
|
+.blueBG {
|
|
|
+ background: linear-gradient(180deg,
|
|
|
+ rgba(224, 234, 251, 0.2) 0%,
|
|
|
+ rgba(54, 130, 252, 0.3) 100%);
|
|
|
+}
|
|
|
+
|
|
|
+.greenBG {
|
|
|
+ background: linear-gradient(180deg,
|
|
|
+ rgb(211, 246, 228, 0.2) 0%,
|
|
|
+ rgb(23, 196, 105, 0.3) 100%);
|
|
|
+}
|
|
|
+
|
|
|
+.depth_box {
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ height: 100%;
|
|
|
+ width: 95%;
|
|
|
+ margin: 0 auto;
|
|
|
+ overflow: hidden;
|
|
|
+ justify-content: space-between;
|
|
|
+}
|
|
|
+
|
|
|
+.depth {
|
|
|
+ width: calc(100% / 5 - 10px);
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+}
|
|
|
+
|
|
|
+.depth > span:nth-child(1) {
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: 700;
|
|
|
+ margin: 0 0 10px;
|
|
|
+}
|
|
|
+.depth > div:nth-child(1) {}
|
|
|
</style>
|