|
@@ -25,16 +25,15 @@
|
|
|
0
|
|
|
? 0
|
|
|
: (
|
|
|
- (loginCountMonthArray[loginCountMonthArray.length - 1]
|
|
|
+ ((loginCountMonthArray[loginCountMonthArray.length - 1]
|
|
|
.course -
|
|
|
loginCountMonthArray[loginCountMonthArray.length - 2]
|
|
|
.course) /
|
|
|
- (allCourse -
|
|
|
- loginCountMonthArray[loginCountMonthArray.length - 1]
|
|
|
- .course)
|
|
|
- ).toFixed(2) *
|
|
|
- 100 +
|
|
|
- "%"
|
|
|
+ (allCourse -
|
|
|
+ loginCountMonthArray[loginCountMonthArray.length - 1]
|
|
|
+ .course)) *
|
|
|
+ 100
|
|
|
+ ).toFixed(2) + "%"
|
|
|
}}</span>
|
|
|
</div>
|
|
|
<div class="info blueBG">
|
|
@@ -194,7 +193,7 @@
|
|
|
<CateRank
|
|
|
v-if="courseType == 0"
|
|
|
style="height: calc(100%)"
|
|
|
- :courseArray="courseArray"
|
|
|
+ :courseArray="courseArray"
|
|
|
></CateRank>
|
|
|
<CourseNum
|
|
|
v-if="courseType == 1"
|
|
@@ -219,7 +218,11 @@
|
|
|
<el-progress
|
|
|
:width="80"
|
|
|
type="circle"
|
|
|
- :percentage="allCourse ? parseInt((evaCount / allCourse * 100).toFixed(0)) : 0"
|
|
|
+ :percentage="
|
|
|
+ allCourse
|
|
|
+ ? parseInt(((evaCount / allCourse) * 100).toFixed(0))
|
|
|
+ : 0
|
|
|
+ "
|
|
|
:stroke-width="5"
|
|
|
:format="format"
|
|
|
color="#106BFF"
|
|
@@ -232,7 +235,13 @@
|
|
|
<el-progress
|
|
|
:width="80"
|
|
|
type="circle"
|
|
|
- :percentage="allCourse ? parseInt((haveWorksCourse / allCourse * 100).toFixed(0)) : 0"
|
|
|
+ :percentage="
|
|
|
+ allCourse
|
|
|
+ ? parseInt(
|
|
|
+ ((haveWorksCourse / allCourse) * 100).toFixed(0)
|
|
|
+ )
|
|
|
+ : 0
|
|
|
+ "
|
|
|
:stroke-width="5"
|
|
|
:format="format"
|
|
|
color="#106BFF"
|
|
@@ -245,7 +254,13 @@
|
|
|
<el-progress
|
|
|
:width="80"
|
|
|
type="circle"
|
|
|
- :percentage="allCourse ? parseInt((evaWorksCount / allCourse * 100).toFixed(0)) : 0"
|
|
|
+ :percentage="
|
|
|
+ allCourse
|
|
|
+ ? parseInt(
|
|
|
+ ((evaWorksCount / allCourse) * 100).toFixed(0)
|
|
|
+ )
|
|
|
+ : 0
|
|
|
+ "
|
|
|
:stroke-width="5"
|
|
|
:format="format"
|
|
|
color="#106BFF"
|
|
@@ -258,7 +273,13 @@
|
|
|
<el-progress
|
|
|
:width="80"
|
|
|
type="circle"
|
|
|
- :percentage="allCourse ? parseInt((evaWorksCount / allCourse * 100).toFixed(0)) : 0"
|
|
|
+ :percentage="
|
|
|
+ allCourse
|
|
|
+ ? parseInt(
|
|
|
+ ((evaWorksCount / allCourse) * 100).toFixed(0)
|
|
|
+ )
|
|
|
+ : 0
|
|
|
+ "
|
|
|
:stroke-width="5"
|
|
|
:format="format"
|
|
|
color="#106BFF"
|
|
@@ -268,28 +289,40 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="info_box" v-if="shType">
|
|
|
- <div class="info blueBG" style="width:calc(100% / 4 - 10px)">
|
|
|
+ <div class="info blueBG" style="width: calc(100% / 4 - 10px)">
|
|
|
<span>平台实施课程总数</span>
|
|
|
<!-- <span>{{ count }}</span> -->
|
|
|
<span>{{ isCourseCount }}</span>
|
|
|
</div>
|
|
|
- <div class="info blueBG" style="width:calc(100% / 4 - 10px)">
|
|
|
+ <div class="info blueBG" style="width: calc(100% / 4 - 10px)">
|
|
|
<span>平台实施课程占比</span>
|
|
|
<!-- <span>{{ weekCount }}</span> -->
|
|
|
- <span>{{ isCourseCount ? (isCourseCount / allCourseCount * 100).toFixed(0) + '%' : '0%' }}</span>
|
|
|
+ <span>{{
|
|
|
+ isCourseCount
|
|
|
+ ? ((isCourseCount / allCourseCount) * 100).toFixed(0) + "%"
|
|
|
+ : "0%"
|
|
|
+ }}</span>
|
|
|
</div>
|
|
|
- <div class="info blueBG" style="width:calc(100% / 4 - 10px)">
|
|
|
+ <div class="info blueBG" style="width: calc(100% / 4 - 10px)">
|
|
|
<span>课程平均任务数量</span>
|
|
|
<!-- <span>{{ weekCount }}</span> -->
|
|
|
- <span>{{ isCourseCount ? (taskCount / isCourseCount).toFixed(0) : 0 }}</span>
|
|
|
+ <span>{{
|
|
|
+ isCourseCount ? (taskCount / isCourseCount).toFixed(0) : 0
|
|
|
+ }}</span>
|
|
|
</div>
|
|
|
- <div class="info blueBG" style="width:calc(100% / 4 - 10px)">
|
|
|
+ <div class="info blueBG" style="width: calc(100% / 4 - 10px)">
|
|
|
<span>课程平均作业数量</span>
|
|
|
<!-- <span>{{ weekCount }}</span> -->
|
|
|
- <span>{{ isCourseCount ? (workCount / isCourseCount).toFixed(0) : 0 }}</span>
|
|
|
+ <span>{{
|
|
|
+ isCourseCount ? (workCount / isCourseCount).toFixed(0) : 0
|
|
|
+ }}</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <WorkNum style="height:calc(100% - 95px)" :workNumList="workNumList" v-if="shType"></WorkNum>
|
|
|
+ <WorkNum
|
|
|
+ style="height: calc(100% - 95px)"
|
|
|
+ :workNumList="workNumList"
|
|
|
+ v-if="shType"
|
|
|
+ ></WorkNum>
|
|
|
<div class="otherCss">
|
|
|
<div v-if="!shType">转换为散点图</div>
|
|
|
<div v-if="shType">转换为漏斗图</div>
|
|
@@ -358,7 +391,11 @@
|
|
|
<div class="title">课程协同情况</div>
|
|
|
</div>
|
|
|
<div class="dataBox">
|
|
|
- <WorkTime style="height: calc(100% - 25px)" :personArray="personList" v-if="xtType"></WorkTime>
|
|
|
+ <WorkTime
|
|
|
+ style="height: calc(100% - 25px)"
|
|
|
+ :personArray="personList"
|
|
|
+ v-if="xtType"
|
|
|
+ ></WorkTime>
|
|
|
<Subjuect style="height: calc(100% - 25px)" v-if="!xtType"></Subjuect>
|
|
|
<div class="otherCss">
|
|
|
<div v-if="!xtType">转换为人员协同</div>
|
|
@@ -482,7 +519,7 @@ export default {
|
|
|
this.xtType = !this.xtType;
|
|
|
},
|
|
|
format(percentage) {
|
|
|
- return percentage + '%';
|
|
|
+ return percentage + "%";
|
|
|
},
|
|
|
typeChange1() {
|
|
|
var a = [];
|
|
@@ -974,27 +1011,41 @@ export default {
|
|
|
}
|
|
|
this.toolList = toolAllArray;
|
|
|
|
|
|
- var twoPerson = 0,threePerson = 0,fivePerson = 0,sevenPerson = 0;
|
|
|
- var personList = []
|
|
|
- for(var i = 0;i<courseList.length;i++){
|
|
|
- if(courseList[i].course_teacher){
|
|
|
- if(courseList[i].course_teacher.split(',').length <= 2){
|
|
|
- twoPerson++
|
|
|
- }else if(4 >= courseList[i].course_teacher.split(',').length && courseList[i].course_teacher.split(',').length > 2){
|
|
|
+ var twoPerson = 0,
|
|
|
+ threePerson = 0,
|
|
|
+ fivePerson = 0,
|
|
|
+ sevenPerson = 0;
|
|
|
+ var personList = [];
|
|
|
+ for (var i = 0; i < courseList.length; i++) {
|
|
|
+ if (courseList[i].course_teacher) {
|
|
|
+ if (courseList[i].course_teacher.split(",").length <= 2) {
|
|
|
+ twoPerson++;
|
|
|
+ } else if (
|
|
|
+ 4 >= courseList[i].course_teacher.split(",").length &&
|
|
|
+ courseList[i].course_teacher.split(",").length > 2
|
|
|
+ ) {
|
|
|
threePerson++;
|
|
|
- }else if(6 >= courseList[i].course_teacher.split(',').length && courseList[i].course_teacher.split(',').length > 4){
|
|
|
+ } else if (
|
|
|
+ 6 >= courseList[i].course_teacher.split(",").length &&
|
|
|
+ courseList[i].course_teacher.split(",").length > 4
|
|
|
+ ) {
|
|
|
fivePerson++;
|
|
|
- }else if(courseList[i].course_teacher.split(',').length > 7){
|
|
|
+ } else if (courseList[i].course_teacher.split(",").length > 7) {
|
|
|
sevenPerson++;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- personList.push({ name:"2人以下",value: twoPerson },{ name:"3-4人",value: threePerson },{ name:"5-6人",value: fivePerson },{ name:"7人以上",value: sevenPerson });
|
|
|
+ personList.push(
|
|
|
+ { name: "2人以下", value: twoPerson },
|
|
|
+ { name: "3-4人", value: threePerson },
|
|
|
+ { name: "5-6人", value: fivePerson },
|
|
|
+ { name: "7人以上", value: sevenPerson }
|
|
|
+ );
|
|
|
this.personList = personList;
|
|
|
|
|
|
let _workCourse = res.data[10]; //带作业的课程
|
|
|
- let _taskCount = 0 //任务数量
|
|
|
+ let _taskCount = 0; //任务数量
|
|
|
|
|
|
var wList = [];
|
|
|
for (var i = 0; i < _workCourse.length; i++) {
|
|
@@ -1021,7 +1072,10 @@ export default {
|
|
|
for (var i = 0; i < _workCourse.length; i++) {
|
|
|
let a = Object.keys(wList);
|
|
|
for (var j = 0; j < Object.keys(wList).length; j++) {
|
|
|
- if (_workCourse[i].courseId == wList[a[j]].cid && _workCourse[i].id) {
|
|
|
+ if (
|
|
|
+ _workCourse[i].courseId == wList[a[j]].cid &&
|
|
|
+ _workCourse[i].id
|
|
|
+ ) {
|
|
|
wList[a[j]].work++;
|
|
|
}
|
|
|
}
|
|
@@ -1033,15 +1087,15 @@ export default {
|
|
|
item.cid,
|
|
|
]);
|
|
|
this.workNumList = workNumList;
|
|
|
- this.taskCount = _taskCount
|
|
|
- this.workCount = _workCourse.length
|
|
|
+ this.taskCount = _taskCount;
|
|
|
+ this.workCount = _workCourse.length;
|
|
|
this.isCourseCount = res.data[11][0].count; //课程开展总数
|
|
|
this.allCourseCount = res.data[9].length; //课程总数
|
|
|
|
|
|
- let _gradeCourse = 0 //各年级上传课程
|
|
|
- let _subjectCourse = 0 //各学科上传课程
|
|
|
- let _courseArray = []
|
|
|
- _subject.push({ name: '其他' })
|
|
|
+ let _gradeCourse = 0; //各年级上传课程
|
|
|
+ let _subjectCourse = 0; //各学科上传课程
|
|
|
+ let _courseArray = [];
|
|
|
+ _subject.push({ name: "其他" });
|
|
|
|
|
|
for (var i = 0; i < _grade.length; i++) {
|
|
|
_courseArray.push({
|
|
@@ -1049,55 +1103,63 @@ export default {
|
|
|
id: _grade[i].id,
|
|
|
courseid: [],
|
|
|
subject: [],
|
|
|
- })
|
|
|
+ });
|
|
|
for (var z = 0; z < _course.length; z++) {
|
|
|
if (_course[z].typeid == _grade[i].id) {
|
|
|
- _gradeCourse++
|
|
|
- if (_courseArray[i].courseid.indexOf(_course[z].courseid) === -1) {
|
|
|
- _courseArray[i].courseid.push(_course[z].courseid)
|
|
|
+ _gradeCourse++;
|
|
|
+ if (
|
|
|
+ _courseArray[i].courseid.indexOf(_course[z].courseid) === -1
|
|
|
+ ) {
|
|
|
+ _courseArray[i].courseid.push(_course[z].courseid);
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
for (var j = 0; j < _subject.length; j++) {
|
|
|
_courseArray[i].subject.push({
|
|
|
name: _subject[j].name,
|
|
|
id: _subject[j].id,
|
|
|
- course: 0
|
|
|
- })
|
|
|
+ course: 0,
|
|
|
+ });
|
|
|
for (var z = 0; z < _course.length; z++) {
|
|
|
- if (_course[z].typeid == _subject[j].id && _courseArray[i].courseid.indexOf(_course[z].courseid) !== -1) {
|
|
|
- _courseArray[i].subject[j].course++
|
|
|
+ if (
|
|
|
+ _course[z].typeid == _subject[j].id &&
|
|
|
+ _courseArray[i].courseid.indexOf(_course[z].courseid) !== -1
|
|
|
+ ) {
|
|
|
+ _courseArray[i].subject[j].course++;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- let sum = 0
|
|
|
+ let sum = 0;
|
|
|
for (var j = 0; j < _courseArray[i].subject.length - 1; j++) {
|
|
|
- sum += _courseArray[i].subject[j].course
|
|
|
+ sum += _courseArray[i].subject[j].course;
|
|
|
}
|
|
|
- _courseArray[i].subject[_courseArray[i].subject.length - 1].course = (_courseArray[i].courseid.length - sum) < 0 ? 0 : _courseArray[i].courseid.length - sum
|
|
|
+ _courseArray[i].subject[_courseArray[i].subject.length - 1].course =
|
|
|
+ _courseArray[i].courseid.length - sum < 0
|
|
|
+ ? 0
|
|
|
+ : _courseArray[i].courseid.length - sum;
|
|
|
}
|
|
|
for (var j = 0; j < _subject.length; j++) {
|
|
|
for (var z = 0; z < _course.length; z++) {
|
|
|
if (_course[z].typeid == _subject[j].id) {
|
|
|
- _subjectCourse++
|
|
|
+ _subjectCourse++;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- this.courseArray = _courseArray
|
|
|
+ this.courseArray = _courseArray;
|
|
|
|
|
|
this.evaCount = res.data[12][0].count; //设置评价
|
|
|
-
|
|
|
+
|
|
|
this.evaWorksCount = res.data[13][0].count; //查询有目标并且有评价的作业
|
|
|
|
|
|
for (var i = 0; i < this.pusaDep.length; i++) {
|
|
|
if (this.pusaDep[i].name == "课程总数") {
|
|
|
- this.pusaDep[i].value = ((this.allCourse / this.allCourse) * 100).toFixed(
|
|
|
- 0
|
|
|
- );
|
|
|
+ this.pusaDep[i].value = (
|
|
|
+ (this.allCourse / this.allCourse) *
|
|
|
+ 100
|
|
|
+ ).toFixed(0);
|
|
|
} else if (this.pusaDep[i].name == "设置评价课程") {
|
|
|
this.pusaDep[i].value = (
|
|
|
- (this.evaCount / this.allCourse) *
|
|
|
+ (this.evaCount / this.allCourse) *
|
|
|
100
|
|
|
).toFixed(0);
|
|
|
} else if (this.pusaDep[i].name == "已提交作业课程") {
|
|
@@ -1119,76 +1181,98 @@ export default {
|
|
|
}
|
|
|
|
|
|
var today = new Date();
|
|
|
- var lastDayOfWeek = new Date(today.setDate(today.getDate() - today.getDay() + 7));;//本周周日
|
|
|
+ var lastDayOfWeek = new Date(
|
|
|
+ today.setDate(today.getDate() - today.getDay() + 7)
|
|
|
+ ); //本周周日
|
|
|
|
|
|
let weekArray = {
|
|
|
- lastWeek: [],//上周
|
|
|
- toWeek: [] //本周
|
|
|
- }
|
|
|
+ lastWeek: [], //上周
|
|
|
+ toWeek: [], //本周
|
|
|
+ };
|
|
|
for (var i = 0; i < 14; i++) {
|
|
|
- let time = JSON.parse(JSON.stringify(lastDayOfWeek))
|
|
|
- let time2 = new Date(time)
|
|
|
+ let time = JSON.parse(JSON.stringify(lastDayOfWeek));
|
|
|
+ let time2 = new Date(time);
|
|
|
var a = new Date(time2.setDate(time2.getDate() - i));
|
|
|
if (i > 6) {
|
|
|
- weekArray.lastWeek.push(a.getFullYear() + '-' + (a.getMonth() + 1) + '-' + a.getDate());
|
|
|
+ weekArray.lastWeek.push(
|
|
|
+ a.getFullYear() + "-" + (a.getMonth() + 1) + "-" + a.getDate()
|
|
|
+ );
|
|
|
} else {
|
|
|
- weekArray.toWeek.push(a.getFullYear() + '-' + (a.getMonth() + 1) + '-' + a.getDate());
|
|
|
+ weekArray.toWeek.push(
|
|
|
+ a.getFullYear() + "-" + (a.getMonth() + 1) + "-" + a.getDate()
|
|
|
+ );
|
|
|
}
|
|
|
}
|
|
|
let weekCourse = [];
|
|
|
let weekCourse2 = [];
|
|
|
- let lastWeekCouseCount = 0
|
|
|
- let toWeekCouseCount = 0
|
|
|
+ let lastWeekCouseCount = 0;
|
|
|
+ let toWeekCouseCount = 0;
|
|
|
for (var z = 0; z < _course.length; z++) {
|
|
|
- let _date = new Date(weekArray.lastWeek[weekArray.lastWeek.length - 1])
|
|
|
- if (new Date(_course[z].create_at) > _date && _course[z].pid == '34628934-d02f-11ec-8c78-005056b86db5') {
|
|
|
- weekCourse.push(_course[z])
|
|
|
- var a = new Date(_course[z].create_at)
|
|
|
- var string = a.getFullYear() + '-' + (a.getMonth() + 1) + '-' + a.getDate()
|
|
|
+ let _date = new Date(
|
|
|
+ weekArray.lastWeek[weekArray.lastWeek.length - 1]
|
|
|
+ );
|
|
|
+ if (
|
|
|
+ new Date(_course[z].create_at) > _date &&
|
|
|
+ _course[z].pid == "34628934-d02f-11ec-8c78-005056b86db5"
|
|
|
+ ) {
|
|
|
+ weekCourse.push(_course[z]);
|
|
|
+ var a = new Date(_course[z].create_at);
|
|
|
+ var string =
|
|
|
+ a.getFullYear() + "-" + (a.getMonth() + 1) + "-" + a.getDate();
|
|
|
if (weekArray.lastWeek.indexOf(string) != -1) {
|
|
|
- lastWeekCouseCount++
|
|
|
+ lastWeekCouseCount++;
|
|
|
} else {
|
|
|
- toWeekCouseCount++
|
|
|
+ toWeekCouseCount++;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- let lastCourseidWeek = []
|
|
|
- let toCourseidWeek = []
|
|
|
+ let lastCourseidWeek = [];
|
|
|
+ let toCourseidWeek = [];
|
|
|
for (var i = 0; i < _grade.length; i++) {
|
|
|
weekCourse2.push({
|
|
|
name: _grade[i].name,
|
|
|
id: _grade[i].id,
|
|
|
lastCourse: 0,
|
|
|
toCourse: 0,
|
|
|
- })
|
|
|
+ });
|
|
|
for (var z = 0; z < weekCourse.length; z++) {
|
|
|
if (weekCourse[z].typeid == _grade[i].id) {
|
|
|
- var a = new Date(weekCourse[z].create_at)
|
|
|
- var string = a.getFullYear() + '-' + (a.getMonth() + 1) + '-' + a.getDate()
|
|
|
+ var a = new Date(weekCourse[z].create_at);
|
|
|
+ var string =
|
|
|
+ a.getFullYear() +
|
|
|
+ "-" +
|
|
|
+ (a.getMonth() + 1) +
|
|
|
+ "-" +
|
|
|
+ a.getDate();
|
|
|
if (weekArray.lastWeek.indexOf(string) != -1) {
|
|
|
- weekCourse2[i].lastCourse++
|
|
|
+ weekCourse2[i].lastCourse++;
|
|
|
if (lastCourseidWeek.indexOf(weekCourse[z].courseid) === -1) {
|
|
|
- lastCourseidWeek.push(weekCourse[z].courseid)
|
|
|
+ lastCourseidWeek.push(weekCourse[z].courseid);
|
|
|
}
|
|
|
} else {
|
|
|
- weekCourse2[i].toCourse++
|
|
|
+ weekCourse2[i].toCourse++;
|
|
|
if (toCourseidWeek.indexOf(weekCourse[z].courseid) === -1) {
|
|
|
- toCourseidWeek.push(weekCourse[z].courseid)
|
|
|
+ toCourseidWeek.push(weekCourse[z].courseid);
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
weekCourse2.push({
|
|
|
- name: '其他',
|
|
|
- id: '',
|
|
|
- lastCourse: (lastWeekCouseCount - lastCourseidWeek.length) > 0 ? (lastWeekCouseCount - lastCourseidWeek.length) : 0,
|
|
|
- toCourse: (toWeekCouseCount - toCourseidWeek.length) > 0 ? (toWeekCouseCount - toCourseidWeek.length) : 0,
|
|
|
- })
|
|
|
+ name: "其他",
|
|
|
+ id: "",
|
|
|
+ lastCourse:
|
|
|
+ lastWeekCouseCount - lastCourseidWeek.length > 0
|
|
|
+ ? lastWeekCouseCount - lastCourseidWeek.length
|
|
|
+ : 0,
|
|
|
+ toCourse:
|
|
|
+ toWeekCouseCount - toCourseidWeek.length > 0
|
|
|
+ ? toWeekCouseCount - toCourseidWeek.length
|
|
|
+ : 0,
|
|
|
+ });
|
|
|
|
|
|
- this.weekCourse2 = weekCourse2
|
|
|
+ this.weekCourse2 = weekCourse2;
|
|
|
|
|
|
this.$forceUpdate();
|
|
|
})
|