score.js 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792
  1. var knownExams = ''
  2. for (let i = 3000; i < 3400; i++)knownExams += i.toString() + ','
  3. knownExams = knownExams.slice(0, knownExams.length - 1)
  4. function decimal(x, n) {
  5. x = Math.round(x * 10 ** n) / 10 ** n;
  6. return x.toFixed(n);
  7. }
  8. var fileCount = 0, cur = 0, files = {};
  9. var stuId = {}, examId = {}
  10. function prevFile() {
  11. cur = (cur - 1 + fileCount) % fileCount;
  12. processFiles();
  13. }
  14. function nextFile() {
  15. cur = (cur + 1) % fileCount;
  16. processFiles();
  17. }
  18. function clearScreen() {
  19. $(".chart").hide(300)
  20. $("#fileOutput").html('');
  21. // $("#fileInfo").html('');
  22. $("#name").html('');
  23. }
  24. document.onkeydown = function (event) {
  25. var e = event || window.event || arguments.callee.caller.arguments[0];
  26. if (e) {
  27. if (e.key == "ArrowLeft") {
  28. prevFile();
  29. }
  30. else if (e.key == "ArrowRight") {
  31. nextFile();
  32. }
  33. }
  34. };
  35. function getFiles(e) {
  36. files[fileCount] = e.target.files[0];
  37. cur = fileCount;
  38. fileCount++;
  39. $("#controls").removeClass("disabled");
  40. $("#lbtn").removeClass("disabled");
  41. $("#rbtn").removeClass("disabled");
  42. processFiles(1);
  43. }
  44. //原理:string<->cipherparams.ciphertext
  45. const key = CryptoJS.enc.Utf8.parse("abcdefgabcdefg12");
  46. function aesDecrypt(encrypted) {
  47. var cipherParams = CryptoJS.lib.CipherParams.create({ ciphertext: CryptoJS.enc.Hex.parse(encrypted) })
  48. var decrypted = CryptoJS.AES.decrypt(cipherParams, key, { mode: CryptoJS.mode.ECB, padding: CryptoJS.pad.Pkcs7 });
  49. return decrypted.toString(CryptoJS.enc.Utf8);
  50. }
  51. function aesEncrypt(encrypted) {
  52. return CryptoJS.AES.encrypt(encrypted, key, { mode: CryptoJS.mode.ECB, padding: CryptoJS.pad.Pkcs7 }).ciphertext.toString();
  53. }
  54. function stringToByte(str) {
  55. var bytes = new Array();
  56. var len, c;
  57. len = str.length;
  58. for (let i = 0; i < len; i++) {
  59. c = str.charCodeAt(i);
  60. if (c >= 0x010000 && c <= 0x10FFFF) {
  61. bytes.push(((c >> 18) & 0x07) | 0xF0);
  62. bytes.push(((c >> 12) & 0x3F) | 0x80);
  63. bytes.push(((c >> 6) & 0x3F) | 0x80);
  64. bytes.push((c & 0x3F) | 0x80);
  65. } else if (c >= 0x000800 && c <= 0x00FFFF) {
  66. bytes.push(((c >> 12) & 0x0F) | 0xE0);
  67. bytes.push(((c >> 6) & 0x3F) | 0x80);
  68. bytes.push((c & 0x3F) | 0x80);
  69. } else if (c >= 0x000080 && c <= 0x0007FF) {
  70. bytes.push(((c >> 6) & 0x1F) | 0xC0);
  71. bytes.push((c & 0x3F) | 0x80);
  72. } else {
  73. bytes.push(c & 0xFF);
  74. }
  75. }
  76. return bytes;
  77. }
  78. function fetchDo(id) {
  79. var bd = '{"meId":' + $('#Id').val() + ',"seIds":"' + knownExams + '","schoolId":19707,"studentId":"' + id + '"}';
  80. // console.log(bd)
  81. bd = aesEncrypt(bd)
  82. // console.log(bd)
  83. fetch('http://36.112.23.77/analysis/api/student/exam/getStudentReportMEVO', {
  84. method: 'POST',
  85. headers: {
  86. 'Content-type': 'application/json',
  87. },
  88. body: bd
  89. }).then(res => {
  90. res.text().then(resj => {
  91. files[fileCount] = new Blob([resj], {
  92. type: 'text/plain'
  93. });;
  94. cur = fileCount;
  95. fileCount++;
  96. $("#controls").removeClass("disabled");
  97. $("#lbtn").removeClass("disabled");
  98. $("#rbtn").removeClass("disabled");
  99. processFiles(1);
  100. });
  101. })
  102. }
  103. function fetchMe(id) {
  104. if (!parseInt(id)) {
  105. fetch('/js/e.json', {
  106. method: 'GET',
  107. headers: {
  108. 'Content-type': 'application/json',
  109. }
  110. }).then(res => {
  111. res.json().then(resj => {
  112. var queryData = resj.data.filter(function (e) {
  113. return e.name == id
  114. });
  115. fetchDo(queryData[0].no)
  116. });
  117. })
  118. } else fetchDo(id)
  119. }
  120. var datSe
  121. function imageLoaded(p) {
  122. var imgObj = $('img')[p]
  123. var por = imgObj.width / imgObj.naturalWidth;
  124. if (por == 1) por = ($('.tab-content')[0].clientWidth - 12) / imgObj.naturalWidth;
  125. $('.cover' + p).empty()
  126. for (var i = 0; i < datSe.displayIndexDetails.length; i++) {
  127. var di = datSe.displayIndexDetails[i]
  128. var s = di.eqAnswerIpxywh
  129. var sp = s.split('#')
  130. for (let j = 0; j < sp.length; j++) {
  131. var spp = sp[j].split(',')
  132. if (spp.length == 6) {
  133. if (parseInt(spp[1]) - 1 == p) {
  134. var opt = $('<span class="minus" style="transform:translate(' + (spp[2] * por).toFixed(6) + 'px,' + (spp[3] * por).toFixed(6) + 'px)">'
  135. + ((di.eqScore == di.eqFullScore) ? (di.eqFullScore.toString()) : ((di.eqScore == 0) ? ((di.eqScore - di.eqFullScore).toString()) : (di.eqScore.toString() + '/' + di.eqFullScore.toString()))) + '</span>').appendTo('.cover' + p)
  136. if (di.eqScore == di.eqFullScore) opt.addClass('full')
  137. else wriggle(opt)
  138. }
  139. } else {
  140. if (p == 0) {
  141. var opt = $('<span class="sp" style="transform:translate(' + (spp[1] * por).toFixed(6) + 'px,' + (spp[2] * por).toFixed(6) + 'px);width:' + (spp[3] * por).toFixed(6) + 'px;height:' + (spp[4] * por).toFixed(6) + 'px"></span>').appendTo('.cover' + p)
  142. if (j == 0 && di.eqFullScore != di.eqScore)
  143. wriggle($('<span class="minus" style="transform:translate(' + (spp[1] * por - 20).toFixed(6) + 'px,' + (spp[2] * por - 5).toFixed(6) + 'px)">'
  144. + (di.eqScore - di.eqFullScore).toString() + '</span>').appendTo('.cover' + p))
  145. if (di.eqCorrectAnswer.match("ABCD"[j])) opt.addClass('cor')
  146. else if (di.eqAnswer.match("ABCD"[j])) opt.addClass('err')
  147. }
  148. }
  149. }
  150. }
  151. }
  152. var curSe, shown
  153. function getSe(id, force, force2) {
  154. if (!force && !$('.nav-tabs>li')[2].classList[0]) return
  155. if (!force2 && id == curSe && shown) return
  156. shown = 1
  157. curSe = id
  158. fontSize = 14
  159. if (!stuId[cur]) stuId[cur] = prompt('数字校园号?')
  160. if (!examId[cur]) examId[cur] = prompt('考试编号?(心意答点击考试标题后,切换考试的列表里可见)')
  161. var bd = '{"schoolId":19707,"seId":' + id + ',"studentId":"' + stuId[cur] + '"}';
  162. bd = aesEncrypt(bd)
  163. fetch('http://36.112.23.77/analysis/api/student/exam/getStudentReportSEVO', {
  164. method: 'POST',
  165. headers: {
  166. 'Content-type': 'application/json',
  167. },
  168. body: bd
  169. }).then(res => {
  170. res.json().then(() => {
  171. // $('#singleDat').html(aesDecrypt(resj.data))
  172. });
  173. })
  174. bd = '{"schoolId":19707,"meId":' + examId[cur] + ',"seId":' + id + ',"studentId":"' + stuId[cur] + '"}';
  175. bd = aesEncrypt(bd)
  176. fetch('http://36.112.23.77/analysis/api/student/exam/getStuExamDetailInfo', {
  177. method: 'POST',
  178. headers: {
  179. 'Content-type': 'application/json',
  180. },
  181. body: bd
  182. }).then(res => {
  183. res.json().then(resj => {
  184. // $('#singleDat').html(aesDecrypt(resj.data))
  185. $('#singleDat').empty()
  186. var f = JSON.parse(aesDecrypt(resj.data))
  187. for (let i = 1; i <= f.pageCount; i++) {
  188. $('#singleDat').append('<br><span class="cover' + (i - 1) + '"></span><img src="http://36.112.23.77' + f.examUrl + 'page_' + i + '.jpg" onload="imageLoaded(' + (i - 1) + ')">')
  189. $('img')[i - 1].style.width = '100%'
  190. }
  191. datSe = f;
  192. });
  193. })
  194. }
  195. var timer = []
  196. function clearWriggle() {
  197. for (let i = 0; i < timer.length; i++)clearInterval(timer[i])
  198. timer = []
  199. }
  200. function wriggle(el) {
  201. var last = 0, now = 10
  202. timer.push(setInterval(function () {
  203. now = Math.random() * 100 - 50
  204. $(el).css('transform', $(el).css('transform').split('rotate')[0] + 'rotate(' + (now - last) + 'deg)')
  205. last = now
  206. }, Math.random() * 600 + 300))
  207. }
  208. function getCol(rate) {
  209. if (90 <= rate) return 'success'
  210. if (75 <= rate) return 'info'
  211. if (60 <= rate) return 'warning'
  212. else return 'danger'
  213. }
  214. var time, fontSize
  215. function resizeChart() {
  216. clearTimeout(time)
  217. time = setTimeout(function () {
  218. clearWriggle()
  219. if ($('.nav-tabs>li')[0].classList[0] == 'active') {
  220. console.log('reload chart')
  221. cc.resize()
  222. sc1.resize()
  223. sc2.resize()
  224. oc1.resize()
  225. oc2.resize()
  226. oc3.resize()
  227. oc4.resize()
  228. if ($('#score1>div').css('width') == '0px') $('#resizeBtn').show()
  229. else $('#resizeBtn').hide(300)
  230. } else if ($('.nav-tabs>li')[2].classList[0] == 'active') {
  231. console.log('reload image')
  232. for (let i = 0; i < datSe.pageCount; i++)imageLoaded(i)
  233. $('.minus').css('font-size', fontSize)
  234. }
  235. }, 300)
  236. }
  237. function getClassCount() {
  238. if (examId[cur] == 1021 || examId[cur] == 972 || examId[cur] == 957 || examId[cur] == 951) return '15'
  239. else if (examId[cur] == 970) return '13'
  240. else return '?'
  241. }
  242. var link = document.createElement('a'), url
  243. function down() {
  244. link.href = url;
  245. link.setAttribute('download', "data.txt")
  246. link.click();
  247. }
  248. var gScore = [], gName = []
  249. const colorList = ["#5bc0de", "#5a7ddd", "#795add", "#ba5add", "#dd5abf", "#dd5a7d", "#dd795a", "#ddba5a", "#bfdd5a", "#7ddd5a", "#5add79", "#5addba", "#2aa9cf", "#20809d", "#cf512a", "#9d3d20"];
  250. function processFiles(isFirstTime = 0) {
  251. console.log("Start processing No. " + cur);
  252. var file = files[cur];
  253. url = window.URL.createObjectURL(file)
  254. var message = $("#message")[0];
  255. var tableLayout = '<table class="table table-responsive" style="table-layout: fixed;"><tr><td>平均分</td><td>最高分</td><td>75%</td><td>中位数</td><td>25%</td><td>最低分</td></tr>'
  256. message.innerHTML = (cur + 1) + "/" + (fileCount) + " - " + file.name + " - " + file.size + " 字节 - " + file.type + " - 正在读取...<br>>";
  257. $("#upbtn").removeClass('btn-danger');
  258. $("#upbtn").addClass('btn-info');
  259. $("#upicon").removeClass('glyphicon-exclamation-sign');
  260. $("#upicon").addClass('glyphicon-open');
  261. var reader = new FileReader();
  262. reader.onload = function (event) {
  263. try {
  264. var output = $("#fileOutput")[0];
  265. var info = $("#fileInfo")[0];
  266. var name = $("#name")[0];
  267. var object = eval("(" + event.target.result + ")");
  268. var classText = "", ohText = "";
  269. $('#single').empty();
  270. var dat = eval("(" + aesDecrypt(object.data).toString() + ")");
  271. examId[cur] = dat.meId.toString();
  272. stuId[cur] = dat.studentId;
  273. info.innerHTML = "<h3>" + dat.multiExam.meName + "</h3>"
  274. var seIds = [], seNames = [];
  275. var mulStu = dat.multiExamStudentScore, mulClass = dat.multiExamClassScores, datSingle = mulStu.singleExamStudentScores, datClass = dat.singleExamClassScores, datYs = dat.singleExamClassYsScores, datMulti = dat.multiExam.singleExams;
  276. seIds = dat.seIds;
  277. var n = seIds.length
  278. for (let i = 0; i < n; i++) {
  279. for (let j = 0; j < n; j++) {
  280. if (datMulti[i].seId == seIds[j]) {
  281. seNames[j] = datMulti[i].seCourseName;
  282. }
  283. }
  284. }
  285. // console.log(seIds)
  286. // console.log(seNames)
  287. var seNameDic = {};
  288. for (let i = 0; i < n; i++) {
  289. seNameDic[seIds[i]] = seNames[i];
  290. }
  291. seNameDic["0"] = "总分";
  292. for (let i = 0; i < datYs.length; i++) {
  293. seNameDic[datYs[i].seId + "Ys"] = seNameDic[datYs[i].seId] + " " + datYs[i].ysClassId;
  294. }
  295. var seIdDic = {}, seIdRev = {}, hasId = {};
  296. for (let i = 0; i < n; i++) {
  297. for (let j = 0; j < n; j++) {
  298. if (!datSingle[j]) continue;
  299. if (datSingle[j].seId == seIds[i]) {
  300. hasId[i] = true;
  301. seIdDic[j] = i;
  302. }
  303. }
  304. }
  305. for (let i = 1; i < n; i++) {
  306. if (!hasId[i]) seIds[i] = -1
  307. }
  308. for (let i = 0; i < n; i++)seIdRev[seIdDic[i]] = i;
  309. var scoreP = {}, avgP = {}, rate0 = {}, rate25 = {}, rate50 = {}, rate75 = {}, rate100 = {}, rateFull = {};//表1用
  310. var classOrderP = {}, ysClassOrderP = {}, gradeOrderP = {};
  311. var classOrder = {}, ysClassOrder = {}, gradeOrder = {};
  312. for (let i = 0; i < n; i++) {
  313. if (!datSingle[i]) continue;
  314. var dId = datSingle[i].seId;
  315. scoreP[dId] = datSingle[i].essScore;
  316. avgP[dId] = datClass[i].secsAvgScore;
  317. rate0[dId] = datClass[i].secsMinScore;
  318. rate25[dId] = datClass[i].secsQuarterScore;
  319. rate50[dId] = datClass[i].secsHalfScore;
  320. rate75[dId] = datClass[i].secs3quatrerScore;
  321. rate100[dId] = datClass[i].secsMaxScore;
  322. rateFull[dId] = datMulti[seIdDic[i]].seFullScore;
  323. classOrderP[dId] = datSingle[i].essClassOrder;
  324. gradeOrderP[dId] = datSingle[i].essGradeOrder;
  325. classOrder[dId] = decimal(1 - datSingle[i].essClassOrder / datClass[i].secsStudentCount, 3);
  326. gradeOrder[dId] = decimal(1 - datSingle[i].essGradeOrder / datMulti[seIdDic[i]].seStudentCount, 3);
  327. }
  328. classOrder["0"] = decimal(1 - mulStu.messClassOrder / mulClass[0].mecsStudentCount, 3);
  329. gradeOrder["0"] = decimal(1 - mulStu.messGradeOrder / dat.multiExamSchoolScore.mecsStudentCount, 3);
  330. classOrderP["0"] = mulStu.messClassOrder;
  331. gradeOrderP["0"] = mulStu.messGradeOrder
  332. for (let i = 0; i < datYs.length; i++) {
  333. for (let j = 0; j < n; j++) {
  334. if (!datSingle[j]) continue;
  335. if (datYs[i].seId == datSingle[j].seId) {
  336. ysClassOrder[datYs[i].seId + "Ys"] = decimal(1 - datSingle[j].essYsClassOrder / datYs[i].secsStudentCount, 3);
  337. ysClassOrderP[datYs[i].seId + "Ys"] = datSingle[j].essYsClassOrder;
  338. }
  339. }
  340. }
  341. var classCount = getClassCount()
  342. for (let i = 0; i < n; i++) {
  343. // dat.multiExamStudentScore.singleExamStudentScores[i].seId ---mulStu
  344. // dat.singleExamClassScores[i].seId ---datClass
  345. // dat.multiExam.singleExams[i].seId ---datMulti
  346. // seIds[i]
  347. // 前两个和后两个数据应该是能分别对上号的(1-2 3-4),用 seIdDic 连接
  348. // seIdDic {key(1-2): value(3-4),..}
  349. var g = seIdRev[i];
  350. if (!datSingle[g]) continue;
  351. $('#single').append('<button class="btn btn-' + getCol(decimal(gradeOrder[seIds[i]] * 100, 1)) + ' btn-how" onclick="getSe(' + seIds[i] + ');$(\'.btn-how\').removeClass(\'active\');$(this).addClass(\'active\')">' + seNameDic[datSingle[g].seId] + '</button>')
  352. classText += "<h3 class='bg-" + getCol(decimal(gradeOrder[seIds[i]] * 100, 1)) + " text-" + getCol(decimal(gradeOrder[seIds[i]] * 100, 1)) + "'>"
  353. + seNameDic[datSingle[g].seId] + " <small>" + datSingle[g].essScore + "</small></h3>"
  354. + "<h4>" + dat.examStudents[0].classId + " 班内 <small>"
  355. + datSingle[g].essClassOrder + " / " + datClass[g].secsStudentCount + "</small></h4>"
  356. + tableLayout
  357. + "<tr><td>" + datClass[g].secsAvgScore + "</td><td>" + datClass[g].secsMaxScore + "</td><td>" + datClass[g].secs3quatrerScore + "</td><td>" + datClass[g].secsHalfScore + "</td><td>" + datClass[g].secsQuarterScore + "</td><td>" + datClass[g].secsMinScore + "</td></tr></table>";
  358. ohText = "," + dat.examStudents[0].classId + " 班 " + datClass[g].secsClassOrder + " / " + classCount
  359. for (let j = 0; j < datYs.length; j++) {
  360. if (datYs[j].seId == datSingle[g].seId) {
  361. classText += "<h4>" + datYs[j].ysClassId + " 层内 <small>"
  362. + datSingle[g].essYsClassOrder + " / " + datYs[j].secsStudentCount + "</small></h4>"
  363. + tableLayout
  364. + "<tr><td>" + datYs[j].secsAvgScore + "</td><td>" + datYs[j].secsMaxScore + "</td><td>" + datYs[j].secs3quatrerScore + "</td><td>" + datYs[j].secsHalfScore + "</td><td>" + datYs[j].secsQuarterScore + "</td><td>" + datYs[j].secsMinScore + "</td></tr></table>";
  365. ohText += "," + datYs[j].ysClassId + " 层 " + datYs[j].secsClassOrder + " / ?"
  366. }
  367. }
  368. classText += "<h4>年级 <small>"
  369. + datSingle[g].essGradeOrder + " / " + datMulti[seIdDic[g]].seStudentCount + ohText + "</small></h4>"
  370. + tableLayout
  371. + "<tr><td>" + datMulti[seIdDic[g]].seAvgScore + "</td><td>" + datMulti[seIdDic[g]].seMaxScore + "</td><td>" + datMulti[seIdDic[g]].se3QuarterScore + "</td><td>" + datMulti[seIdDic[g]].seHalfScore + "</td><td>" + datMulti[seIdDic[g]].seQuarterScore + "</td><td>" + datMulti[seIdDic[g]].seMinScore + "</td></tr></table>";
  372. }
  373. if (!curSe) curSe = seIds[0]
  374. getSe(curSe, 0, 1)
  375. } catch (e) {
  376. console.log(e);
  377. clearScreen();
  378. message.innerHTML += "读取失败!";
  379. $("#upbtn").removeClass('btn-info');
  380. $("#upbtn").addClass('btn-danger');
  381. $("#upicon").removeClass('glyphicon-open');
  382. $("#upicon").addClass('glyphicon-exclamation-sign');
  383. return;
  384. }
  385. $('#single').append('<button class="btn btn-default btn-how" onclick="fontSize+=3;$(\'.minus\').css(\'font-size\',fontSize+\'px\');for (let i=0;i<datSe.pageCount;i++)$(\'img\')[i].style.width=parseInt($(\'img\')[i].style.width)+20+\'%\';resizeChart()"><span class="glyphicon glyphicon-zoom-in"></span></button>')
  386. $('#single').append('<button class="btn btn-default btn-how" onclick="fontSize-=3;$(\'.minus\').css(\'font-size\',fontSize+\'px\');for (let i=0;i<datSe.pageCount;i++)$(\'img\')[i].style.width=parseInt($(\'img\')[i].style.width)-20+\'%\';resizeChart()"><span class="glyphicon glyphicon-zoom-out"></span></button>')
  387. $('#single').append('<span id="singleDat" style="word-wrap: break-word; white-space: normal"></span><br><br><br>')
  388. if (isFirstTime) {
  389. var bd = JSON.stringify({
  390. content: mulStu.studentName + ' ' + parseInt(dat.examStudents[0].classId),
  391. })
  392. fetch('/score/log', {
  393. method: 'POST',
  394. headers: {
  395. 'Content-type': 'application/json',
  396. },
  397. body: bd
  398. })
  399. }
  400. message.innerHTML += "读取成功!<br>";
  401. name.innerHTML = "姓名:" + mulStu.studentName;
  402. info.innerHTML = "<h3>" + dat.multiExam.meName
  403. + " <small>" + dat.examStudents[0].classId + "班 "
  404. + mulStu.studentName + "</small></h3>"
  405. if (n > 1) output.innerHTML = "<h3>总分 <small>" + mulStu.messScore + "</small></h3>"
  406. + "<h4>" + dat.examStudents[0].classId + " 班内 <small>"
  407. + mulStu.messClassOrder + " / " + mulClass[0].mecsStudentCount + "</small></h4>"
  408. + tableLayout
  409. + "<tr><td>" + mulClass[0].mecsAvgScore + "</td><td>" + mulClass[0].mecsMaxScore + "</td><td>" + mulClass[0].mecs3quatrerScore + "</td><td>" + mulClass[0].mecsHalfScore + "</td><td>" + mulClass[0].mecsQuarterScore + "</td><td>" + mulClass[0].mecsMinScore + "</td></tr></table>"
  410. + "<h4>年级 <small>"
  411. + mulStu.messGradeOrder + " / " + dat.multiExamSchoolScore.mecsStudentCount + "," + dat.examStudents[0].classId + "班 " + mulClass[0].mecsClassOrder + " / " + classCount + "</small></h4>"
  412. + tableLayout
  413. + "<tr><td>" + dat.multiExam.meAvgScore + "</td><td>" + dat.multiExam.meMaxScore + "</td><td>" + dat.multiExam.me3QuatrerScore + "</td><td>" + dat.multiExam.meHalfScore + "</td><td>" + dat.multiExam.meQuarterScore + "</td><td>" + dat.multiExam.meMinScore + "</td></tr></table>"
  414. + classText
  415. else output.innerHTML = classText;
  416. $("#fileOutput table").css("display", "inline-table");
  417. $("#fileOutput table").css("margin-bottom", "0px");
  418. $('.chart').show();
  419. if (fileCount <= 1) $('#comp').hide();
  420. else $('#comp').show(), cc.resize();
  421. cc = echarts.init($("#comp")[0]);
  422. sc1 = echarts.init($("#score1")[0]);
  423. sc2 = echarts.init($("#score2")[0]);
  424. oc1 = echarts.init($("#order1")[0]);
  425. oc2 = echarts.init($("#order2")[0]);
  426. oc3 = echarts.init($("#order3")[0]);
  427. oc4 = echarts.init($("#order4")[0]);
  428. var seNameDicP = [], scorePP = [], scoreSe = {}, avgPP = [], rateFullP = [], scoreQ = [], avgQ = [];
  429. var seNameDicP2 = [], classOrderPP = [], gradeOrderPP = [], classOrderQ = [], gradeOrderQ = [];
  430. var seNameDicP3 = [], ysClassOrderPP = [], ysClassOrderQ = [];
  431. seIds[n] = 0
  432. var boxP = [], boxQ = [];
  433. for (let i = 0; i < n; i++) {
  434. var g = seIds[i];
  435. if (g == -1) continue;
  436. scoreSe[seNameDic[g]] = scoreP[g];
  437. if (seNameDic[g].substr(0, 2) == '总分') continue;
  438. seNameDicP.push(seNameDic[g].substr(0, 2));
  439. scorePP.push(scoreP[g]);
  440. avgPP.push(avgP[g]);
  441. // rate0P.push(rate0[g]);
  442. // rate25P.push(rate25[g]);
  443. // rate50P.push(rate50[g]);
  444. // rate75P.push(rate75[g]);
  445. // rate100P.push(rate100[g]);
  446. rateFullP.push(rateFull[g]);
  447. boxP.push({ value: [rate0[g], rate25[g], rate50[g], rate75[g], rate100[g]] })
  448. scoreQ.push(decimal(scoreP[g] / rateFull[g] * 100, 1));
  449. avgQ.push(decimal(avgP[g] / rateFull[g] * 100, 1));
  450. // rate0Q.push(decimal(rate0[g] / rateFull[g] * 100, 1));
  451. // rate25Q.push(decimal(rate25[g] / rateFull[g] * 100, 1));
  452. // rate50Q.push(decimal(rate50[g] / rateFull[g] * 100, 1));
  453. // rate75Q.push(decimal(rate75[g] / rateFull[g] * 100, 1));
  454. // rate100Q.push(decimal(rate100[g] / rateFull[g] * 100, 1));
  455. boxQ.push({
  456. value: [decimal(rate0[g] / rateFull[g] * 100, 1),
  457. decimal(rate25[g] / rateFull[g] * 100, 1),
  458. decimal(rate50[g] / rateFull[g] * 100, 1),
  459. decimal(rate75[g] / rateFull[g] * 100, 1),
  460. decimal(rate100[g] / rateFull[g] * 100, 1)]
  461. })
  462. }
  463. for (let i = 0; i <= n; i++) {
  464. var g = seIds[i];
  465. if (g == -1) continue;
  466. if (seNameDic[g].substr(0, 2) == '总分' && n == 1) continue;
  467. seNameDicP2.push(seNameDic[g].substr(0, 2));
  468. classOrderPP.push(classOrderP[g]);
  469. gradeOrderPP.push(gradeOrderP[g]);
  470. classOrderQ.push(decimal(classOrder[g] * 100, 1));
  471. gradeOrderQ.push(decimal(gradeOrder[g] * 100, 1));
  472. }
  473. for (let i in ysClassOrderP) {
  474. seNameDicP3.push(seNameDic[i]);
  475. ysClassOrderPP.push(ysClassOrderP[i]);
  476. ysClassOrderQ.push(decimal(ysClassOrder[i] * 100, 1));
  477. }
  478. gScore[cur] = scoreSe
  479. gName[cur] = mulStu.studentName
  480. console.log(gScore)
  481. var opBase = {
  482. textStyle: { fontFamily: 'Noto Serif SC' },
  483. tooltip: { trigger: 'axis' },
  484. toolbox: {
  485. show: true,
  486. feature: {
  487. saveAsImage: { show: true },
  488. dataView: {
  489. show: true,
  490. readOnly: false
  491. }
  492. },
  493. orient: 'vertical'
  494. },
  495. emphasis: {
  496. focus: 'series',
  497. },
  498. calculable: true,
  499. }
  500. var cOp = { ...opBase }, sOp1 = { ...opBase }, sOp2 = { ...opBase }, oOp1 = { ...opBase }, oOp2 = { ...opBase }, oOp3 = { ...opBase }, oOp4 = { ...opBase };
  501. var cName = [], cSe = [], cSeries = []
  502. for (let i = 0; i < fileCount; i++) {
  503. for (let j in gScore[i]) {
  504. console.log(j)
  505. if (cName.indexOf(j) == -1) cName.push(j)
  506. }
  507. }
  508. console.log(cName)
  509. for (let i = 0; i < fileCount; i++) {
  510. cSe.push([])
  511. if (gScore[i]) {
  512. for (let j = 0; j < cName.length; j++) {
  513. cSe[i].push(gScore[i][cName[j]])
  514. }
  515. cSeries.push({ name: gName[i], type: 'line', data: cSe[i], color: colorList[i] })
  516. }
  517. }
  518. console.log(cSeries)
  519. cOp.title = {
  520. text: '比一比',
  521. textStyle: {
  522. fontSize: 14,
  523. fontStyle: 'normal',
  524. fontWeight: 'bold',
  525. },
  526. }
  527. cOp.legend = { data: gName }
  528. cOp.xAxis = [{
  529. axisTick: {
  530. alignWithLabel: true
  531. },
  532. type: 'category', data: cName,
  533. name: '科目',
  534. position: 'left'
  535. }]
  536. cOp.yAxis = [{
  537. type: 'value', name: '分数', position: 'left'
  538. }]
  539. cOp.series = cSeries
  540. sOp1.title = {
  541. text: '分数',
  542. textStyle: {
  543. fontSize: 14,
  544. fontStyle: 'normal',
  545. fontWeight: 'bold',
  546. },
  547. }
  548. sOp1.legend = { data: ['四分位', /*'0%', '25%', '50%', '75%', '100%',*/ '满分', '平均分', '我的分数'] }
  549. sOp1.xAxis = [{
  550. axisTick: {
  551. alignWithLabel: true
  552. },
  553. type: 'category', data: seNameDicP,
  554. name: '科目',
  555. position: 'left'
  556. }]
  557. sOp1.yAxis = [{
  558. type: 'value', name: '分数', position: 'left'
  559. }]
  560. sOp1.series = [
  561. {
  562. name: '四分位',
  563. type: 'boxplot', data: boxP, color: '#5bc0de',
  564. itemStyle: {
  565. color: 'transparent'
  566. }
  567. },
  568. // { name: '0%', type: 'line', data: rate0P, color: '#5cb85c' },
  569. // { name: '25%', type: 'line', data: rate25P, color: '#c7dc68' },
  570. // { name: '50%', type: 'line', data: rate50P, color: '#f0ad4e' },
  571. // { name: '75%', type: 'line', data: rate75P, color: '#c7dc68' },
  572. // { name: '100%', type: 'line', data: rate100P, color: '#5cb85c' },
  573. { name: '满分', type: 'scatter', data: rateFullP, color: '#b6b6b6' },
  574. { name: '平均分', type: 'line', data: avgPP, color: '#337ab7' },
  575. { name: '我的分数', type: 'line', data: scorePP, color: '#e2041b' },
  576. ]
  577. sOp2.title = {
  578. text: '得分率',
  579. textStyle: {
  580. fontSize: 14,
  581. fontStyle: 'normal',
  582. fontWeight: 'bold',
  583. },
  584. }
  585. sOp2.legend = { data: ['四分位', /*'0%', '25%', '50%', '75%', '100%', */'平均得分率', '我的得分率'] }
  586. sOp2.xAxis = [{
  587. axisTick: {
  588. alignWithLabel: true
  589. },
  590. type: 'category',
  591. data: seNameDicP,
  592. name: '科目',
  593. position: 'left'
  594. }]
  595. sOp2.yAxis = [{
  596. type: 'value',
  597. name: '得分率(%)',
  598. position: 'left'
  599. }]
  600. sOp2.series = [
  601. {
  602. name: '四分位', type: 'boxplot', data: boxQ, color: '#5bc0de',
  603. itemStyle: {
  604. color: 'transparent'
  605. }
  606. },
  607. // { name: '0%', type: 'line', data: rate0Q, color: '#5cb85c' },
  608. // { name: '25%', type: 'line', data: rate25Q, color: '#c7dc68' },
  609. // { name: '50%', type: 'line', data: rate50Q, color: '#f0ad4e' },
  610. // { name: '75%', type: 'line', data: rate75Q, color: '#c7dc68' },
  611. // { name: '100%', type: 'line', data: rate100Q, color: '#5cb85c' },
  612. { name: '平均得分率', type: 'line', data: avgQ, color: '#337ab7' },
  613. { name: '我的得分率', type: 'line', data: scoreQ, color: '#d9534f' }
  614. ]
  615. oOp1.title = {
  616. text: '行政排名位次',
  617. textStyle: {
  618. fontSize: 14,
  619. fontStyle: 'normal',
  620. fontWeight: 'bold',
  621. },
  622. }
  623. oOp1.legend = { data: ['班级排名', '年级排名'] }
  624. oOp1.xAxis = [{
  625. axisTick: {
  626. alignWithLabel: true
  627. },
  628. type: 'category', data: seNameDicP2,
  629. name: '科目',
  630. position: 'left'
  631. }]
  632. oOp1.yAxis = [{
  633. type: 'value',
  634. name: '排名',
  635. position: 'left'
  636. }]
  637. oOp1.series = [
  638. { name: '班级排名', type: 'bar', data: classOrderPP, color: '#5bc0de' },
  639. { name: '年级排名', type: 'bar', data: gradeOrderPP, color: '#337ab7' }
  640. ]
  641. oOp2.title = {
  642. text: '行政排名比例',
  643. textStyle: {
  644. fontSize: 14,
  645. fontStyle: 'normal',
  646. fontWeight: 'bold',
  647. },
  648. }
  649. oOp2.legend = { data: ['班级排名(%)', '年级排名(%)'] }
  650. oOp2.xAxis = [{
  651. axisTick: {
  652. alignWithLabel: true
  653. },
  654. type: 'category', data: seNameDicP2,
  655. name: '科目',
  656. position: 'left'
  657. }]
  658. oOp2.yAxis = [{
  659. type: 'value',
  660. name: '排名(%)',
  661. position: 'left',
  662. max: 100,
  663. }]
  664. oOp2.series = [
  665. { name: '班级排名(%)', type: 'bar', data: classOrderQ, color: '#5bc0de' },
  666. { name: '年级排名(%)', type: 'bar', data: gradeOrderQ, color: '#337ab7' }
  667. ]
  668. oOp3.title = {
  669. text: '分班排名位次',
  670. textStyle: {
  671. fontSize: 14,
  672. fontStyle: 'normal',
  673. fontWeight: 'bold',
  674. },
  675. }
  676. oOp3.legend = { data: ['分班排名'] }
  677. oOp3.xAxis = [{
  678. axisTick: {
  679. alignWithLabel: true
  680. },
  681. type: 'category', data: seNameDicP3,
  682. name: '科目',
  683. position: 'left'
  684. }]
  685. oOp3.yAxis = [{
  686. type: 'value',
  687. name: '排名',
  688. position: 'left'
  689. }]
  690. oOp3.series = [{
  691. name: '分班排名', type: 'bar', data: ysClassOrderPP, color: '#5cb85c'
  692. }]
  693. oOp4.title = {
  694. text: '分班排名比例',
  695. textStyle: {
  696. fontSize: 14,
  697. fontStyle: 'normal',
  698. fontWeight: 'bold',
  699. },
  700. }
  701. oOp4.legend = { data: ['分班排名(%)'] }
  702. oOp4.xAxis = [{
  703. axisTick: {
  704. alignWithLabel: true
  705. },
  706. type: 'category', data: seNameDicP3,
  707. name: '科目',
  708. position: 'left'
  709. }]
  710. oOp4.yAxis = [{
  711. type: 'value',
  712. name: '排名(%)',
  713. position: 'left',
  714. max: 100,
  715. }]
  716. oOp4.series = [{
  717. name: '分班排名(%)', type: 'bar', data: ysClassOrderQ, color: '#5cb85c'
  718. }]
  719. // 为echarts对象加载数据
  720. cc.setOption(cOp);
  721. sc1.setOption(sOp1);
  722. sc2.setOption(sOp2);
  723. oc1.setOption(oOp1);
  724. oc2.setOption(oOp2);
  725. oc3.setOption(oOp3);
  726. oc4.setOption(oOp4);
  727. window.onresize = resizeChart
  728. }
  729. reader.readAsText(file);
  730. }
  731. $().ready(function () {
  732. $(".chart").hide()
  733. $(function () { $("[data-toggle='tooltip']").tooltip(); });
  734. $("#Input").keydown(function (e) {
  735. if (e.keyCode == 13) {
  736. $("#fetchBtn")[0].click();
  737. }
  738. })
  739. })
  740. //uglifyjs public/js/score.js -c -m eval,toplevel,reserved=[nextFile,prevFile,fetchMe,resizeChart,getSe,imageLoaded,getFiles,fontSize,curSe,datSe] -o public/js/score.min.js