$(function () { function initAverageScoreEcharts(list, xAxis_data) { var itemStyle = { normal: { label: { show: true, //开启显示数值 position: "top" //数值在上方显示 } } }; var score = [], maxscore = [], minscore = [], avgscore = []; var curlegend = ["满分", "最高分", "最低分", "平均分"]; for (var i = 0; i < list.length; i++) { var item = list[i]; score.push(item.allscore); maxscore.push(item.classmaxscore); minscore.push(item.classminscore); avgscore.push(item.classavgscore); } var curseries = [ { name: "满分", type: "bar", barWidth: $.UnitUtil.mm2px(5), // 柱状图最小高度 barMinHeight: $.UnitUtil.mm2px(2), barGap: 0, data: score, itemStyle: itemStyle }, { name: "最高分", type: "bar", barWidth: $.UnitUtil.mm2px(5), // 柱状图最小高度 barMinHeight: $.UnitUtil.mm2px(2), barGap: 0, data: maxscore, itemStyle: itemStyle }, { name: "最低分", type: "bar", barWidth: $.UnitUtil.mm2px(5), // 柱状图最小高度 barMinHeight: $.UnitUtil.mm2px(2), barGap: 0, data: minscore, itemStyle: itemStyle }, { name: "平均分", type: "bar", barWidth: $.UnitUtil.mm2px(5), // 柱状图最小高度 barMinHeight: $.UnitUtil.mm2px(2), barGap: 0, data: avgscore, itemStyle: itemStyle } ]; var option = { animation: false, color: ["#5C99FF", "#FF5F56", "#5EC5C8", "#f1982b"], title: { text: "分", x: "left", y: "top", textStyle: { color: "#5F6E82", fontSize: $.UnitUtil.mm2px(3), fontWeight: 500 } }, legend: { itemWidth: $.UnitUtil.mm2px(2), itemHeight: $.UnitUtil.mm2px(2), top: "bottom", data: curlegend }, grid: { top: $.UnitUtil.mm2px(10), left: 0, right: 0, bottom: $.UnitUtil.mm2px(8), containLabel: true }, xAxis: [ { type: "category", data: xAxis_data, axisLabel: { color: "#5F6E82" //更改坐标轴文字颜色 }, axisTick: { alignWithLabel: true }, boundaryGap: true, triggerEvent: true, axisLine: { show: true, //是否显示轴线 lineStyle: { color: "#DADADA" //刻度线的颜色 } } } ], yAxis: [ { type: "value", axisTick: { show: false //刻度 }, axisLine: { show: false, //是否显示轴线 lineStyle: { color: "#DADADA" //刻度线的颜色 } }, splitLine: { //网格线 lineStyle: { type: "dotted" //设置网格线类型 dotted:虚线 solid:实线 }, show: true //隐藏或显示 }, axisLabel: { color: "#5F6E82" //更改坐标轴文字颜色 } } ], series: curseries }; var myEcharts = echarts.init( document.querySelector(".section1 #averagescoreEcharts") ); myEcharts.clear(); myEcharts.setOption(option); } function initExcellenceRateEcharts(list, xAxis_data) { var itemStyle = { normal: { label: { show: true, //开启显示数值 position: "top" //数值在上方显示 } } }; var yxrate = [], lhrate = [], jgrate = [], dfrate = []; var curlegend = ["优秀率", "良好率", "及格率", "低分率"]; for (var i = 0; i < list.length; i++) { var item = list[i]; yxrate.push(item.yxrate); lhrate.push(item.lhrate); jgrate.push(item.jgrate); dfrate.push(item.dfrate); } var curseries = [ { name: "优秀率", type: "bar", barWidth: $.UnitUtil.mm2px(5), // 柱状图最小高度 barMinHeight: $.UnitUtil.mm2px(2), barGap: 0, data: yxrate, itemStyle: itemStyle }, { name: "良好率", type: "bar", barWidth: $.UnitUtil.mm2px(5), // 柱状图最小高度 barMinHeight: $.UnitUtil.mm2px(2), barGap: 0, data: lhrate, itemStyle: itemStyle }, { name: "及格率", type: "bar", barWidth: $.UnitUtil.mm2px(5), // 柱状图最小高度 barMinHeight: $.UnitUtil.mm2px(2), barGap: 0, data: jgrate, itemStyle: itemStyle }, { name: "低分率", type: "bar", barWidth: $.UnitUtil.mm2px(5), // 柱状图最小高度 barMinHeight: $.UnitUtil.mm2px(2), barGap: 0, data: dfrate, itemStyle: itemStyle } ]; var option = { animation: false, color: ["#5C99FF", "#FF5F56", "#5EC5C8", "#f1982b"], title: { text: "分", x: "left", y: "top", textStyle: { color: "#5F6E82", fontSize: $.UnitUtil.mm2px(3), fontWeight: 500 } }, legend: { itemWidth: $.UnitUtil.mm2px(2), itemHeight: $.UnitUtil.mm2px(2), top: "bottom", data: curlegend }, grid: { top: $.UnitUtil.mm2px(10), left: 0, right: 0, bottom: $.UnitUtil.mm2px(8), containLabel: true }, xAxis: [ { type: "category", data: xAxis_data, axisLabel: { color: "#5F6E82" //更改坐标轴文字颜色 }, axisTick: { alignWithLabel: true }, boundaryGap: true, triggerEvent: true, axisLine: { show: true, //是否显示轴线 lineStyle: { color: "#DADADA" //刻度线的颜色 } } } ], yAxis: [ { type: "value", axisTick: { show: false //刻度 }, axisLine: { show: false, //是否显示轴线 lineStyle: { color: "#DADADA" //刻度线的颜色 } }, splitLine: { //网格线 lineStyle: { type: "dotted" //设置网格线类型 dotted:虚线 solid:实线 }, show: true //隐藏或显示 }, axisLabel: { color: "#5F6E82" //更改坐标轴文字颜色 } } ], series: curseries }; var myEcharts = echarts.init( document.querySelector(".section1 #excellencerateEcharts") ); myEcharts.clear(); myEcharts.setOption(option); } function initExamnumEcharts(list, xAxis_data) { var itemStyle = { normal: { label: { show: true, //开启显示数值 position: "top" //数值在上方显示 } } }; var stunum = [], missnum = []; var curlegend = ["实考人数", "缺考人数"]; for (var i = 0; i < list.length; i++) { var item = list[i]; stunum.push(item.stunum); missnum.push(item.missnum); } var curseries = [ { name: "实考人数", type: "bar", barWidth: $.UnitUtil.mm2px(5), // 柱状图最小高度 barMinHeight: $.UnitUtil.mm2px(2), barGap: 0, data: stunum, itemStyle: itemStyle }, { name: "缺考人数", type: "bar", barWidth: $.UnitUtil.mm2px(5), // 柱状图最小高度 barMinHeight: $.UnitUtil.mm2px(2), barGap: 0, data: missnum, itemStyle: itemStyle } ]; var option = { animation: false, color: ["#5C99FF", "#FF5F56", "#5EC5C8", "#f1982b"], title: { text: "分", x: "left", y: "top", textStyle: { color: "#5F6E82", fontSize: $.UnitUtil.mm2px(3), fontWeight: 500 } }, legend: { itemWidth: $.UnitUtil.mm2px(2), itemHeight: $.UnitUtil.mm2px(2), top: "bottom", data: curlegend }, grid: { top: $.UnitUtil.mm2px(10), left: 0, right: 0, bottom: $.UnitUtil.mm2px(8), containLabel: true }, xAxis: [ { type: "category", data: xAxis_data, axisLabel: { color: "#5F6E82" //更改坐标轴文字颜色 }, axisTick: { alignWithLabel: true }, boundaryGap: true, triggerEvent: true, axisLine: { show: true, //是否显示轴线 lineStyle: { color: "#DADADA" //刻度线的颜色 } } } ], yAxis: [ { type: "value", axisTick: { show: false //刻度 }, axisLine: { show: false, //是否显示轴线 lineStyle: { color: "#DADADA" //刻度线的颜色 } }, splitLine: { //网格线 lineStyle: { type: "dotted" //设置网格线类型 dotted:虚线 solid:实线 }, show: true //隐藏或显示 }, axisLabel: { color: "#5F6E82" //更改坐标轴文字颜色 } } ], series: curseries }; var myEcharts = echarts.init( document.querySelector(".section1 #examnumEcharts") ); myEcharts.clear(); myEcharts.setOption(option); } function initbzcEcharts(list, xAxis_data) { var itemStyle = { normal: { label: { show: true, //开启显示数值 position: "top" //数值在上方显示 } } }; var bzc = []; var curlegend = ["标准差"]; for (var i = 0; i < list.length; i++) { var item = list[i]; bzc.push(item.bzc); } var curseries = [ { name: "标准差", type: "bar", barWidth: $.UnitUtil.mm2px(5), // 柱状图最小高度 barMinHeight: $.UnitUtil.mm2px(2), barGap: 0, data: bzc, itemStyle: itemStyle } ]; var option = { animation: false, color: ["#5C99FF", "#FF5F56", "#5EC5C8", "#f1982b"], title: { text: "分", x: "left", y: "top", textStyle: { color: "#5F6E82", fontSize: $.UnitUtil.mm2px(3), fontWeight: 500 } }, legend: { itemWidth: $.UnitUtil.mm2px(2), itemHeight: $.UnitUtil.mm2px(2), top: "bottom", data: curlegend }, grid: { top: $.UnitUtil.mm2px(10), left: 0, right: 0, bottom: $.UnitUtil.mm2px(8), containLabel: true }, xAxis: [ { type: "category", data: xAxis_data, axisLabel: { color: "#5F6E82" //更改坐标轴文字颜色 }, axisTick: { alignWithLabel: true }, boundaryGap: true, triggerEvent: true, axisLine: { show: true, //是否显示轴线 lineStyle: { color: "#DADADA" //刻度线的颜色 } } } ], yAxis: [ { type: "value", axisTick: { show: false //刻度 }, axisLine: { show: false, //是否显示轴线 lineStyle: { color: "#DADADA" //刻度线的颜色 } }, splitLine: { //网格线 lineStyle: { type: "dotted" //设置网格线类型 dotted:虚线 solid:实线 }, show: true //隐藏或显示 }, axisLabel: { color: "#5F6E82" //更改坐标轴文字颜色 } } ], series: curseries }; var myEcharts = echarts.init( document.querySelector(".section1 #bzcEcharts") ); myEcharts.clear(); myEcharts.setOption(option); } function initexamaverageEcharts(list, xAxis_data) { var itemStyle = { normal: { label: { show: true, //开启显示数值 position: "top" //数值在上方显示 } } }; var stunum = [], missnum = []; var curlegend = ["平均分", "校平均分"]; for (var i = 0; i < list.length; i++) { var item = list[i]; stunum.push(item.classavgscore); missnum.push(item.schoolavgscore); } var curseries = [ { name: "平均分", type: "bar", barWidth: $.UnitUtil.mm2px(5), // 柱状图最小高度 barMinHeight: $.UnitUtil.mm2px(2), barGap: 0, data: stunum, itemStyle: itemStyle }, { name: "校平均分", type: "bar", barWidth: $.UnitUtil.mm2px(5), // 柱状图最小高度 barMinHeight: $.UnitUtil.mm2px(2), barGap: 0, data: missnum, itemStyle: itemStyle } ]; var option = { animation: false, color: ["#5C99FF", "#FF5F56", "#5EC5C8", "#f1982b"], title: { text: "分", x: "left", y: "top", textStyle: { color: "#5F6E82", fontSize: $.UnitUtil.mm2px(3), fontWeight: 500 } }, legend: { itemWidth: $.UnitUtil.mm2px(2), itemHeight: $.UnitUtil.mm2px(2), top: "bottom", data: curlegend }, grid: { top: $.UnitUtil.mm2px(10), left: 0, right: 0, bottom: $.UnitUtil.mm2px(8), containLabel: true }, xAxis: [ { type: "category", data: xAxis_data, axisLabel: { color: "#5F6E82" //更改坐标轴文字颜色 }, axisTick: { alignWithLabel: true }, boundaryGap: true, triggerEvent: true, axisLine: { show: true, //是否显示轴线 lineStyle: { color: "#DADADA" //刻度线的颜色 } } } ], yAxis: [ { type: "value", axisTick: { show: false //刻度 }, axisLine: { show: false, //是否显示轴线 lineStyle: { color: "#DADADA" //刻度线的颜色 } }, splitLine: { //网格线 lineStyle: { type: "dotted" //设置网格线类型 dotted:虚线 solid:实线 }, show: true //隐藏或显示 }, axisLabel: { color: "#5F6E82" //更改坐标轴文字颜色 } } ], series: curseries }; var myEcharts = echarts.init( document.querySelector(".section1 #examaverageEcharts") ); myEcharts.clear(); myEcharts.setOption(option); } function initscoreGradeEcharts(list) { var xAxis_data = [], series_data = [], legend_data = [], levelRateObj = {}, levelNumObj = {}, levelrangeObj = []; $.each(list, function (key, item) { if (item.subjectname == "总分") { item.subjectname = "全科"; } if ($.inArray(item.subjectname, xAxis_data) == -1) { xAxis_data.push(item.subjectname); } if ($.inArray(item.rankname + "类", legend_data) == -1) { legend_data.push(item.rankname + "类"); } if ($.inArray(item.rankrange, levelrangeObj) == -1) { levelrangeObj.push(item.rankrange); } if (!levelRateObj[item.rankname + "类"]) { levelRateObj[item.rankname + "类"] = []; } levelRateObj[item.rankname + "类"].push(item.sturate); if (!levelNumObj[item.rankname + "类"]) { levelNumObj[item.rankname + "类"] = []; } levelNumObj[item.rankname + "类"].push(item.stunum); }); $.each(legend_data, function (key, item) { series_data.push({ name: item, type: "bar", stack: "总量", barWidth: 32, // 柱状图最小高度 barMinHeight: 16, showBackground: true, // 柱状图显示背景 backgroundStyle: { color: "#F3F4F5" }, itemStyle: { normal: { barBorderRadius: [4, 4, 4, 4] } }, label: { normal: { show: true, align: "center", verticalAlign: "middle", position: "inside", distance: 0, color: "#fff", formatter: function (params) { return levelNumObj[params.seriesName][params.dataIndex] || 0; } } }, data: levelNumObj[item] }); }); showgraphicaldata(xAxis_data, legend_data, levelrangeObj, list); var option = { color: ["#5C99FF", "#ff5f56", "#5EC5C8", "#f1982b", "#6e5eff"], animation: false, title: { text: "%", x: "left", y: "top", textStyle: { color: "#5F6E82", fontSize: $.UnitUtil.mm2px(3), fontWeight: 500 } }, legend: { itemWidth: $.UnitUtil.mm2px(2), itemHeight: $.UnitUtil.mm2px(2), top: "bottom", data: legend_data }, grid: { top: $.UnitUtil.mm2px(10), left: 0, right: 0, bottom: $.UnitUtil.mm2px(8), containLabel: true }, xAxis: [ { type: "category", data: xAxis_data, axisLabel: { color: "#5F6E82", //更改坐标轴文字颜色 interval: 0 }, axisTick: { alignWithLabel: true }, boundaryGap: true, triggerEvent: true, axisLine: { show: true, //是否显示轴线 lineStyle: { color: "#DADADA" //刻度线的颜色 } } } ], yAxis: [ { type: "value", axisTick: { show: false //刻度 }, axisLine: { show: false, //是否显示轴线 lineStyle: { color: "#DADADA" //刻度线的颜色 } }, splitLine: { //网格线 lineStyle: { type: "dotted" //设置网格线类型 dotted:虚线 solid:实线 }, show: true //隐藏或显示 }, axisLabel: { color: "#5F6E82" //更改坐标轴文字颜色 } } ], series: series_data }; var myEcharts = echarts.init( document.querySelector(".section1 #scoreGradeEcharts") ); myEcharts.clear(); myEcharts.setOption(option); } //图表数据 function showgraphicaldata(xAxis_data, legend_data, levelrangeObj, list) { //图表数据 var arr = JSON.parse(JSON.stringify(list)); var tableobj = {}; var tablehtml = ""; $.each(xAxis_data, function (idx, item) { var classs = $.grep(arr, function (val) { return val.subjectname == item; }); tableobj[classs[0].subjectname + "goodTableHeadTr1Html"] = '科目'; tableobj[classs[0].subjectname + "goodTableHeadTr2Html"] = ""; tableobj[classs[0].subjectname + "goodTableTbodyHtml"] = ""; $.each(classs, function (idx, item) { tableobj[item.subjectname + "goodTableHeadTr1Html"] += '' + item.rankname + "类" + item.rankrange + ""; tableobj[item.subjectname + "goodTableHeadTr2Html"] += "人数比例"; if (idx == 0) { tableobj[item.subjectname + "goodTableTbodyHtml"] += '
' + item.subjectname + "
"; } tableobj[item.subjectname + "goodTableTbodyHtml"] += '
' + item.stunum + '
' + item.sturate + "%
"; }); tablehtml += ' ' + tableobj[classs[0].subjectname + "goodTableHeadTr1Html"] + '' + tableobj[classs[0].subjectname + "goodTableHeadTr2Html"] + '' + tableobj[classs[0].subjectname + "goodTableTbodyHtml"] + "
"; }); $(".section1 .gradescale").html(tablehtml); } function initclassscorePartEcharts(list) { var xAxis_data = []; var dataArr = []; var arr = $.grep(list, function (val) { return val.subjectid == "zf"; }); $.each(arr, function (index, item) { xAxis_data.push(item.rankname); dataArr.push(item.stunum); }); var series_data = [ { name: "全科", type: "line", symbol: "circle", stack: "全科", label: { normal: { show: true, align: "center", verticalAlign: "bottom", position: "top", distance: 0, formatter: `{c}` } }, data: dataArr } ]; var option = { animation: false, title: { text: "人", x: "left", y: "top", textStyle: { color: "#5F6E82", fontSize: $.UnitUtil.mm2px(3), fontWeight: 500 } }, color: ["#5C99FF", "#ff5f56", "#5EC5C8", "#f1982b", "#6e5eff"], legend: { icon: "roundRect", itemWidth: $.UnitUtil.mm2px(2), itemHeight: $.UnitUtil.mm2px(2), top: "bottom", data: ["全科"] }, grid: { top: $.UnitUtil.mm2px(10), left: 0, right: 0, bottom: $.UnitUtil.mm2px(8), containLabel: true }, xAxis: { type: "category", axisLabel: { textStyle: { color: "#5F6E82" }, interval: 2, rotate: 0 }, axisTick: { show: false }, data: xAxis_data }, yAxis: { axisLabel: { textStyle: { color: "#9B9B9BFF" }, interval: 0 }, minInterval: 1, axisLine: { show: false }, axisTick: { show: false }, splitLine: { //网格线 lineStyle: { type: "dotted", //设置网格线类型 dotted:虚线 solid:实线 color: "#DADADA" }, show: true //隐藏或显示 }, type: "value" }, series: series_data }; var myEcharts = echarts.init( document.querySelector(".section1 #classscorePartEcharts") ); myEcharts.clear(); myEcharts.setOption(option); showscoredistributiondata(list, xAxis_data, dataArr); } function showscoredistributiondata(list, xAxis_data) { var tableobj = {}; var num = -1, rownum = 6; //一行六条数据 $.each(xAxis_data, function (idx, item) { var obj = $.grep(list, function (val) { return val.rankname == item && val.subjectid == "zf"; })[0]; if ((idx + rownum) % rownum == 0) { num++; tableobj[num + "goodTableHeadTr1Html"] = '科目'; tableobj[num + "goodTableHeadTr2Html"] = ""; tableobj[num + "trHtml"] = '
全科
'; } tableobj[num + "goodTableHeadTr1Html"] += '' + item + ""; tableobj[num + "goodTableHeadTr2Html"] += "人数比例"; tableobj[num + "trHtml"] += '
' + obj.stunum + '
' + obj.sturate + "%
"; }); //计算表格高度 页面高1047 剩余高度582 表头62.5 内容27.42 var tableheight = (27.5 + 62.5 + 15) * (num + 1); var page = { 1: "", 2: "", 3: "" }; //页数 var table = ""; var itemheight = 27.5 + 62.5 + 15; //单表高度 var maxheight = 0; for (var i = 0; i < num + 1; i++) { maxheight = itemheight * (i + 1); var content = ' ' + tableobj[i + "goodTableHeadTr1Html"] + '' + tableobj[i + "goodTableHeadTr2Html"] + '' + tableobj[i + "trHtml"] + "
"; //计算剩余高度是否能显示最后一个表格 if (maxheight > 582 && 582 - maxheight < itemheight) { page[1] += content; } else if (maxheight > 1629 && 1629 - maxheight < itemheight) { page[2] += content; } else { table += content; } } $(".table_num0 .scoredistribution").html(table); if (tableheight > 582) { //添加第一页 $(".table_num0").after( '
' ); $(".table_num1").html(page[1]); } else if (tableheight > 1629) { //添加第二页 $(".table_num1").after( '
' ); $(".table_num2").html(page[2]); } } function initgoodbadSubjectEcharts(list) { var schoolrate = [], classrate = [], legendlist = [ "全年级",list[0].classname]; $.each(list, function (idx, item) { if (item.subjectname != "全科") { classrate.push( parseInt( ((item.classavgscore - item.schoolavgscore) / item.bzc) * 10000 ) / 100 || 0 ); schoolrate.push( parseInt((item.classavgscore / item.schoolavgscore) * 10000) / 100 || 0 ); } }); // 求出数组最大值 let arr = [...schoolrate, ...classrate],yssubject = "",lssubject = ""; let arr1 = Math.max.apply(null, arr); let maxnum = parseInt((arr1 + 10) / 10) * 10; let arrList = []; $.each(list, function (idx, item) { if (item.subjectname != "全科") { let j = { name: item.subjectname, max: maxnum }; arrList.push(j); if (item.bzc > item.qkbzc) { yssubject += item.subjectname + "、"; } else { lssubject += item.subjectname + "、"; } } }); yssubject = yssubject.substr(0, yssubject.length - 1); lssubject = lssubject.substr(0, lssubject.length - 1); $(".section1 .yssubject").text(yssubject); // 优势 $(".section1 .lssubject").text(lssubject); // 劣势 var option = { animation: false, color: ["#5C99FF", "#FF5F56", "#5EC5C8", "#f1982b"], legend: { icon: "rectRound", itemWidth: $.UnitUtil.mm2px(2), itemHeight: $.UnitUtil.mm2px(2), data: legendlist, x: "center", y: "bottom" }, grid: { top: $.UnitUtil.mm2px(10), left: 0, right: 0, bottom: $.UnitUtil.mm2px(8), containLabel: true }, radar: { radius: "60%", center: ["50%", "55%"], indicator: arrList }, series: { type: "radar", tooltip: { trigger: "item" }, // areaStyle: {}, //内部阴影 data: [ { value: schoolrate, label: { show: true, formatter: function (params) { return params.value; } }, name: "全年级" }, { value: classrate, label: { show: true, formatter: function (params) { return params.value; } }, name: list[0].classname } ] } }; var myEcharts = echarts.init( document.querySelector(".section1 #goodbadSubjectEcharts") ); myEcharts.clear(); myEcharts.setOption(option); showgoodbadtable(list,legendlist,schoolrate,classrate); } function showgoodbadtable (list, legendlist, schoolrate, classrate) { var table = "", goodTableHeadTr1Html = '班级', goodTableHeadTr2Html = "", trHtml = ""; $.each(list, function (idx, item) { if (item.subjectname != "全科") { goodTableHeadTr1Html += '' + item.subjectname + ""; } }) $.each(legendlist, function (idx, item) { trHtml += '' + item + ""; if (idx == 0) { $.each(schoolrate, function (idx, item) { trHtml += '' + item + "%"; }) } else { $.each(classrate, function (idx, item) { trHtml += '' + item + "%"; }) } }) table = '' + goodTableHeadTr1Html + '' + trHtml + '
' $(".section1 .goodbadtable").html(table); } var parameter = JSON.parse($(".section_1_html_root").data("page-params")); var xAxis_data = [], html = ""; var mfclass = { num: 0, classname: "" }, yxclass = { num: 0, classname: "" }, lhclass = { num: 0, classname: "" }, jgclass = { num: 0, classname: "" }, dfclass = { num: 0, classname: "" }, skclass = { num: 0, classname: "" }, qkclass = { num: 0, classname: "" }, goodclass = { num: 0, classname: "" }, badclass = { num: 0, classname: "" }; for (var i = 0; i < parameter.xkcj.length; i++) { var item = parameter.xkcj[i]; if (item.subjectname == "总分") { item.subjectname = "全科"; } else { if (mfclass.num < item.allscore) { mfclass = { num: item.allscore, classname: item.subjectname }; } if (yxclass.num < item.yxrate) { yxclass = { num: item.yxrate, classname: item.subjectname }; } if (lhclass.num < item.lhrate) { lhclass = { num: item.lhrate, classname: item.subjectname }; } if (jgclass.num < item.jgrate) { jgclass = { num: item.jgrate, classname: item.subjectname }; } if (dfclass.num < item.dfrate) { dfclass = { num: item.dfrate, classname: item.subjectname }; } if (skclass.num < item.stunum) { skclass = { num: item.stunum, classname: item.subjectname }; } if (qkclass.num < item.missnum) { qkclass = { num: item.missnum, classname: item.subjectname }; } if (item.bzc > item.qkbzc) { goodclass.classname += item.subjectname + "、"; } else { badclass.classname += item.subjectname + "、"; } } html += '
' + (item.subjectname || 0) + '
' + (item.stunum || 0) + '
' + (item.missnum || 0) + '
' + (item.score || 0) + '
' + (item.maxscore || 0) + '
' + (item.minscore || 0) + '
' + (item.avgscore || 0) + '
' + (item.yxrate || 0) + "%" + '
' + (item.lhrate || 0) + "%" + '
' + (item.jgrate || 0) + "%" + '
' + (item.dfrate || 0) + "%" + '
' + (item.bzc || 0) + "%
"; xAxis_data.push(item.subjectname); } goodclass.classname = goodclass.classname.substr( 0, goodclass.classname.length - 1 ); badclass.classname = badclass.classname.substr( 0, badclass.classname.length - 1 ); console.log(parameter); $(".section1 .mfclass").text(mfclass.classname); //满分 $(".section1 .yxclass").text(yxclass.classname); //优秀 $(".section1 .lhclass").text(lhclass.classname); //良好 $(".section1 .jgclass").text(jgclass.classname); //及格 $(".section1 .dfclass").text(dfclass.classname); //低分 $(".section1 .skclass").text(skclass.classname); //实考 $(".section1 .qkclass").text(qkclass.classname); // 缺考 $(".section1 .goodclass").text(goodclass.classname); //较好 $(".section1 .badclass").text(badclass.classname); // 较差 $(".section1 .tbody").html(html); //学科成绩整体分析 initAverageScoreEcharts(parameter.xkcj, xAxis_data); initExcellenceRateEcharts(parameter.xkcj, xAxis_data); initExamnumEcharts(parameter.xkcj, xAxis_data); initbzcEcharts(parameter.xkcj, xAxis_data); initexamaverageEcharts(parameter.xkcj, xAxis_data); initscoreGradeEcharts(parameter.fsdjtj, xAxis_data); initclassscorePartEcharts(parameter.fsdtj); initgoodbadSubjectEcharts(parameter.xkcj); // document.documentElement.scrollTop = 6200; });