diff --git a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/CourseInformationStatisticsBig.vue b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/CourseInformationStatisticsBig.vue index 6fef97c..bc30912 100644 --- a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/CourseInformationStatisticsBig.vue +++ b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/CourseInformationStatisticsBig.vue @@ -1,24 +1,25 @@ + + + \ No newline at end of file diff --git a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/image/blueBook.svg b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/image/blueBook.svg new file mode 100644 index 0000000..61df46b --- /dev/null +++ b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/image/blueBook.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/image/book.svg b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/image/book.svg new file mode 100644 index 0000000..6c19d5e --- /dev/null +++ b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/image/book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/utils/BarEcharts.vue b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/utils/BarEcharts.vue new file mode 100644 index 0000000..2bb792d --- /dev/null +++ b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/utils/BarEcharts.vue @@ -0,0 +1,112 @@ + + + + + \ No newline at end of file diff --git a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/utils/LineEcharts.vue b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/utils/LineEcharts.vue index 979aef2..6db2092 100644 --- a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/utils/LineEcharts.vue +++ b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/utils/LineEcharts.vue @@ -1,7 +1,7 @@ @@ -45,7 +45,7 @@ methods: { drawLine(id) { - this.charts = echarts.init(document.getElementById(id)); + this.charts = echarts.init(this.$refs.line_dv); this.charts.setOption({ xAxis: { type: "category", diff --git a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/utils/PieEcharts.vue b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/utils/PieEcharts.vue index 61ebac7..37ca259 100644 --- a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/utils/PieEcharts.vue +++ b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/utils/PieEcharts.vue @@ -2,7 +2,7 @@ @@ -71,7 +71,7 @@ }, // 绘制饼状图 drawPie(id){ - this.charts = echarts.init(document.getElementById(id)); + this.charts = echarts.init(this.$refs.pie_dv); this.charts.on("click", this.eConsole); this.charts.setOption({ title: { diff --git a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/utils/interfaceConfig.js b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/utils/interfaceConfig.js index 2e07357..70e904f 100644 --- a/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/utils/interfaceConfig.js +++ b/src/views/superFusionPlatform/mainPlatform/moduleAndLayout/moduleCom/educationalWisdom/utils/interfaceConfig.js @@ -39,6 +39,16 @@ const InterfaceConfig = { * page_size 必填 number 每页条数 * */ "getEvaluateTeacherPageList":{url:"/evaluateCourse/getEvaluateTeacherPageList",method:"get",isTestLogin:false}, + /* + *选排课-课程信息统计 + * bureauId 必填 number 机构ID + * */ + "getSelectCourseCount":{url:"/selectCourse/statistics/subjectCourse/getSelectCourseCount",method:"get",isTestLogin:false}, + /* + *选排课-学生选科统计 + * bureauId 必填 number 机构ID + * */ + "getStudentApplyCount":{url:"/selectCourse/statistics/subjectCourse/getStudentApplyCount",method:"get",isTestLogin:false}, }; export default InterfaceConfig