diff --git a/src/api/index.js b/src/api/index.js index 2425ef5..fc5421a 100644 --- a/src/api/index.js +++ b/src/api/index.js @@ -27,6 +27,11 @@ export default { getProjectBySystemId: 'occupationlab/occupationlab/projectManage/getProjectBySystemId', getTheMostRecentlyRunProject: 'python/python/getTheMostRecentlyRunProject', whetherToRenewTheFee: 'nakadai/nakadai/curriculum/whetherToRenewTheFee', + courseLearningProgress: 'nakadai/nakadai/curriculum/learning/progressprogress/courseLearningProgress', + deleteLearningProgress: 'nakadai/nakadai/curriculum/learning/progressprogress/delete', + findLearningProgress: 'nakadai/nakadai/curriculum/learning/progressprogress/findById', + saveLearningProgress: 'nakadai/nakadai/curriculum/learning/progressprogress/save', + updateLearningProgress: 'nakadai/nakadai/curriculum/learning/progressprogress/update', // 能力测评 canExperiment: `occupationlab/occupationlab/evaluationrecord/can_experiment`, // 查询是否能够开启实验 @@ -151,4 +156,5 @@ export default { monthlyAverageOnlineTime: `occupationlab/occupationlab/data/kanban/monthlyAverageOnlineTime`, courseRankings: `occupationlab/occupationlab/data/kanban/courseRankings`, platformLoginStatistics: `users/users/user/platformLoginStatistics`, + activityRanking: `occupationlab/occupationlab/data/kanban/activityRanking`, }; \ No newline at end of file diff --git a/src/layouts/navbar/index.vue b/src/layouts/navbar/index.vue index 64759e9..655119d 100644 --- a/src/layouts/navbar/index.vue +++ b/src/layouts/navbar/index.vue @@ -82,6 +82,10 @@ export default { index: "/log/list", title: "更新日志" }, + { + index: "/screen", + title: "数据看板" + } // { // index: "trial", // title: "试用申请" diff --git a/src/pages/screen/index.vue b/src/pages/screen/index.vue index c8db9fa..2de225c 100644 --- a/src/pages/screen/index.vue +++ b/src/pages/screen/index.vue @@ -247,7 +247,7 @@ -
+
@@ -274,20 +274,20 @@ 名次 姓名 - 班级 + {{ token ? '班级' : '学校' }} 练习次数 平均分
-
+
- + @@ -295,6 +295,50 @@
{{ i + 1 }} {{ item.userName }}{{ item.className }}{{ token ? item.className : item.schoolName }} {{ item.practiceNumber }} {{ item.avgScore }}
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + 活跃度排行榜 +
+
+ + + + + + + + +
名次{{ token ? '班级' : '学校' }}活跃指数
+
+
+ + + + + + + + +
{{ i + 1 }}{{ token ? item.className : item.schoolName }}{{ item.activityIndex }}
+
+
@@ -307,6 +351,7 @@ import Setting from '@/setting' export default { data() { return { + token: Util.local.get(Setting.tokenKey), time: 0, times: [ { @@ -324,6 +369,7 @@ export default { courses: [], popularCourses: [], achs: [], + actives: [], examChart: null } }, @@ -381,6 +427,11 @@ export default { }) this.achs = list }).catch(res => {}) + + // 活跃度排行榜 + this.$post(this.api.activityRanking).then(({ list }) => { + this.actives = list + }).catch(res => {}) this.scrollTable() }, // 切换时间单位 @@ -1018,12 +1069,16 @@ export default { scrollTable() { const dom = this.$refs.popularCourses const dom1 = this.$refs.ach + const dom2 = this.$refs.active setInterval(() => { dom.scrollTop += 1 if (dom.clientHeight + dom.scrollTop === dom.scrollHeight) dom.scrollTop = 0 dom1.scrollTop += 1 if (dom1.clientHeight + dom1.scrollTop === dom1.scrollHeight) dom1.scrollTop = 0 + + dom2.scrollTop += 1 + if (dom2.clientHeight + dom2.scrollTop === dom2.scrollHeight) dom2.scrollTop = 0 }, 30) } } diff --git a/src/pages/station/preview/index.vue b/src/pages/station/preview/index.vue index 9df0022..25ef62d 100644 --- a/src/pages/station/preview/index.vue +++ b/src/pages/station/preview/index.vue @@ -48,6 +48,10 @@

{{ courseName }}

+
+
我的学习进度
+ +