diff --git a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/classEvaluation/classEvaluation.vue b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/classEvaluation/classEvaluation.vue new file mode 100644 index 0000000..dbb9d19 --- /dev/null +++ b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/classEvaluation/classEvaluation.vue @@ -0,0 +1,633 @@ + + + \ No newline at end of file diff --git a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/classEvaluation/classEvaluationLarge.vue b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/classEvaluation/classEvaluationLarge.vue new file mode 100644 index 0000000..db19e63 --- /dev/null +++ b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/classEvaluation/classEvaluationLarge.vue @@ -0,0 +1,44 @@ + + + \ No newline at end of file diff --git a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/classEvaluation/image/messageIcon.png b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/classEvaluation/image/messageIcon.png new file mode 100644 index 0000000..c6c2219 Binary files /dev/null and b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/classEvaluation/image/messageIcon.png differ diff --git a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/classEvaluation/image/pageLabel.png b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/classEvaluation/image/pageLabel.png new file mode 100644 index 0000000..492c4ff Binary files /dev/null and b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/classEvaluation/image/pageLabel.png differ diff --git a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/classEvaluation/interConfig.js b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/classEvaluation/interConfig.js new file mode 100644 index 0000000..54ec135 --- /dev/null +++ b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/classEvaluation/interConfig.js @@ -0,0 +1,55 @@ +export default { + /* + * 获取服务器端系统时间 + * */ + "getNowTime":{ + url:'/intellioa/common/getNowTime', + method:'get', + isTestLogin:true + }, + + /* + * 评分记录板【小号;中号-打分记录】 + * */ + "listSuperfusionTaskScore":{ + url:'/intellioa/dailyEvaluate/dailyReportView/listSuperfusionTaskScore', + method:'get', + isTestLogin:true + }, + + /* + * 日常评价任务列表 + * */ + "listDailyTask":{ + url:'/intellioa/dailyEvaluate/dailyTask/listDailyTask', + method:'get', + isTestLogin:true + }, + + /* + * 汇总计算-班级、任务 + * */ + "gatherClass":{ + url:'/intellioa/dailyEvaluate/dailyReport/gatherClass', + method:'post', + isTestLogin:true + }, + + /* + * 轮询是否汇总完成 + * */ + "getGatherTaskReportFlag":{ + url:'/intellioa/dailyEvaluate/dailyReport/getGatherTaskReportFlag', + method:'get', + isTestLogin:true + }, + + /* + * 班级总分对比(柱形图)【小号;中号-整体评价-班级总分对比】 + * */ + "totalScoreChart":{ + url:'/intellioa/dailyEvaluate/dailyReportView/totalScoreChart', + method:'get', + isTestLogin:true + }, +} diff --git a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/classEvaluation/totalEvaluation.vue b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/classEvaluation/totalEvaluation.vue new file mode 100644 index 0000000..2be8b4d --- /dev/null +++ b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/classEvaluation/totalEvaluation.vue @@ -0,0 +1,397 @@ + + + \ No newline at end of file diff --git a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/studentEvaluation/studentEvaluation.vue b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/studentEvaluation/studentEvaluation.vue index 8e37211..8147f51 100644 --- a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/studentEvaluation/studentEvaluation.vue +++ b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/studentEvaluation/studentEvaluation.vue @@ -455,8 +455,9 @@ }); }, taskChange: function (value) { - if (this.taskId != value) { - this.taskId = value.substring(0, value.indexOf('-')); + let taskId = value.substring(0, value.indexOf('-')); + if (parseInt(this.taskId) != parseInt(taskId)) { + this.taskId = taskId; this.taskName = value.substring(value.indexOf('-') + 1); this.buildEchart(); } diff --git a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/studentEvaluation/studentEvaluationLarge.vue b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/studentEvaluation/studentEvaluationLarge.vue index fb5482d..64f9f9b 100644 --- a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/studentEvaluation/studentEvaluationLarge.vue +++ b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/studentEvaluation/studentEvaluationLarge.vue @@ -435,8 +435,9 @@ }); }, taskChange: function (value) { - if (this.taskId != value) { - this.taskId = value.substring(0, value.indexOf('-')); + let taskId = value.substring(0, value.indexOf('-')); + if (parseInt(this.taskId) != parseInt(taskId)) { + this.taskId = taskId; this.taskName = value.substring(value.indexOf('-') + 1); this.buildEchart(); } diff --git a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/teacherEvaluation/teacherEvaluation.vue b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/teacherEvaluation/teacherEvaluation.vue index a961af8..233f469 100644 --- a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/teacherEvaluation/teacherEvaluation.vue +++ b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/teacherEvaluation/teacherEvaluation.vue @@ -432,8 +432,9 @@ }); }, taskChange: function (value) { - if (this.taskId != value) { - this.taskId = value.substring(0, value.indexOf('-')); + let taskId = value.substring(0, value.indexOf('-')); + if (parseInt(this.taskId) != parseInt(taskId)) { + this.taskId = taskId; this.taskName = value.substring(value.indexOf('-') + 1); this.buildEchart(); } diff --git a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/teacherEvaluation/teacherEvaluationLarge.vue b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/teacherEvaluation/teacherEvaluationLarge.vue index ea932c4..0842fd8 100644 --- a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/teacherEvaluation/teacherEvaluationLarge.vue +++ b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/oa/teacherEvaluation/teacherEvaluationLarge.vue @@ -404,8 +404,9 @@ }); }, taskChange: function (value) { - if (this.taskId != value) { - this.taskId = value.substring(0, value.indexOf('-')); + let taskId = value.substring(0, value.indexOf('-')); + if (parseInt(this.taskId) != parseInt(taskId)) { + this.taskId = taskId; this.taskName = value.substring(value.indexOf('-') + 1); this.buildEchart(); }