|
@@ -45,7 +45,7 @@
|
|
|
<div class="teafre">
|
|
|
<div class="teaMiddle cNum">
|
|
|
<div>课程总数</div>
|
|
|
- <div>{{ cCount }}</div>
|
|
|
+ <div>{{ typeCourseCount }}</div>
|
|
|
</div>
|
|
|
<div class="teaMiddle tNum">
|
|
|
<div>类别总数</div>
|
|
@@ -53,7 +53,7 @@
|
|
|
</div>
|
|
|
<div class="teaMiddle tSum">
|
|
|
<div>类别平均</div>
|
|
|
- <div>{{ (cCount / typeCount).toFixed(0) }}</div>
|
|
|
+ <div>{{ (typeCourseCount / typeCount).toFixed(0) }}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<CateRank
|
|
@@ -62,7 +62,7 @@
|
|
|
margin-top: 10px;
|
|
|
overflow: auto;
|
|
|
"
|
|
|
- :courseNumberArray="courseNumberArray"
|
|
|
+ :courseNumberArray="courseNumberArray2"
|
|
|
></CateRank>
|
|
|
</div>
|
|
|
<div class="halfBox middleBox" style="align-items: flex-start">
|
|
@@ -173,7 +173,9 @@ export default {
|
|
|
subjectList: [],
|
|
|
themeList: [],
|
|
|
typeCount: 0,
|
|
|
+ typeCourseCount: 0,
|
|
|
courseNumberArray: [],
|
|
|
+ courseNumberArray2: [],
|
|
|
gradeArray: [],
|
|
|
subjectArray: [],
|
|
|
themeArray: [],
|
|
@@ -233,15 +235,30 @@ export default {
|
|
|
"*"
|
|
|
);
|
|
|
},
|
|
|
+ typeCourseCountCalu(){
|
|
|
+ this.courseNumberArray2 = this.allArray
|
|
|
+ this.typeCount = this.courseNumberArray2.length
|
|
|
+ let course = []
|
|
|
+ for(var i = 0;i<this.courseNumberArray2.length;i++){
|
|
|
+ let _array = this.courseNumberArray2[i].array
|
|
|
+ for(var j = 0; j <_array.length;j++){
|
|
|
+ console.log(_array[j]);
|
|
|
+ if(course.indexOf(_array[j]) == -1){
|
|
|
+ course.push(_array[j])
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.typeCourseCount = course.length
|
|
|
+ },
|
|
|
typeChange() {
|
|
|
if (this.cType === "") {
|
|
|
this.courseNumberArray = this.allArray;
|
|
|
} else if (this.cType === "grade") {
|
|
|
this.courseNumberArray = this.gradeArray;
|
|
|
} else if (this.cType === "theme") {
|
|
|
- this.courseNumberArray = this.subjectArray;
|
|
|
- } else if (this.cType === "subject") {
|
|
|
this.courseNumberArray = this.themeArray;
|
|
|
+ } else if (this.cType === "subject") {
|
|
|
+ this.courseNumberArray = this.subjectArray;
|
|
|
}
|
|
|
this.$forceUpdate();
|
|
|
},
|
|
@@ -448,10 +465,12 @@ export default {
|
|
|
name: _grade[i].name,
|
|
|
typeid: _grade[i].id,
|
|
|
course: 0,
|
|
|
+ array:[]
|
|
|
});
|
|
|
for (var z = 0; z < _course.length; z++) {
|
|
|
if (_course[z].typeid == _grade[i].id) {
|
|
|
_gradeArray[i].course++;
|
|
|
+ _gradeArray[i].array.push(_course[z].courseid);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -461,10 +480,12 @@ export default {
|
|
|
name: _subject[i].name,
|
|
|
typeid: _subject[i].id,
|
|
|
course: 0,
|
|
|
+ array:[]
|
|
|
});
|
|
|
for (var z = 0; z < _course.length; z++) {
|
|
|
if (_course[z].typeid == _subject[i].id) {
|
|
|
_subjectArray[i].course++;
|
|
|
+ _subjectArray[i].array.push(_course[z].courseid);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -474,10 +495,12 @@ export default {
|
|
|
name: themeList[i].name,
|
|
|
typeid: themeList[i].id,
|
|
|
course: 0,
|
|
|
+ array: []
|
|
|
});
|
|
|
for (var z = 0; z < _course.length; z++) {
|
|
|
if (_course[z].typeid == themeList[i].id) {
|
|
|
_themeArray[i].course++;
|
|
|
+ _themeArray[i].array.push(_course[z].courseid);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -485,6 +508,7 @@ export default {
|
|
|
this.subjectArray = _subjectArray;
|
|
|
this.themeArray = _themeArray;
|
|
|
this.allArray = [..._gradeArray, ..._subjectArray, ..._themeArray];
|
|
|
+ this.typeCourseCountCalu()
|
|
|
this.typeChange();
|
|
|
var wList = [];
|
|
|
for (var i = 0; i < _workCourse.length; i++) {
|