Browse Source

fix detail offset

root 2 years ago
parent
commit
54769ae5a4
1 changed files with 5 additions and 6 deletions
  1. 5 6
      js/score.js

+ 5 - 6
js/score.js

@@ -283,14 +283,13 @@ function getSec(id, force, force2) {
         str += `<span class="sc mySc" style="left:${personScoreList[id] / d.singleExam.seFullScore * 300}">${personScoreList[id]}</span>`
         str += `<span class="sc fullSc" style="left:${300 - 8 * personScoreList[id].toString().length}">${d.singleExam.seFullScore}</span></li>`
         let q = d.examQuestions;
-        let ofs = -8;
         for (let i = 0; i < q.length; i++) {
-            if (i == 9) ofs = 0;
             idc = (q[i].personScore == q[i].eqFullScore ? 'success fullScore' : 'danger"');
-            str += `<li class="text-${idc}" ${procName(q[i].eqDisplayName, 1)}>${procName(q[i].eqDisplayName)}<span class="sc avgSc" style="left:${q[i].eqAvgScore / q[i].eqFullScore * 300 - ofs}">.</span>`
-            if (q[i].personScore != q[i].eqFullScore) str += `<span class="sc mySc" style="left:${q[i].personScore / q[i].eqFullScore * 300 - ofs}">${q[i].personScore}</span>`
-            str += `<span class="sc fullSc" style="left:${300 - 8 * q[i].personScore.toString().length * (q[i].personScore != q[i].eqFullScore) - ofs}">${q[i].eqFullScore}</span>`
-            str += `<span class="sc" style="left:${350 - 8 * q[i].personScore.toString().length * (q[i].personScore != q[i].eqFullScore) - 8 * q[i].eqFullScore.toString().length - ofs}">${q[i].qstTagName}</span></li>`
+            let pid = procName(q[i].eqDisplayName), ofs = pid.toString().length * 8 - 24
+            str += `<li class="text-${idc}" ${procName(q[i].eqDisplayName, 1)}>${pid}<span class="sc avgSc" style="left:${q[i].eqAvgScore / q[i].eqFullScore * 300 - ofs}px">.</span>`
+            if (q[i].personScore != q[i].eqFullScore) str += `<span class="sc mySc" style="left:${q[i].personScore / q[i].eqFullScore * 300 - ofs}px">${q[i].personScore}</span>`
+            str += `<span class="sc fullSc" style="left:${300 - 8 * q[i].personScore.toString().length * (q[i].personScore != q[i].eqFullScore) - ofs}px">${q[i].eqFullScore}</span>`
+            str += `<span class="sc" style="left:${350 - 8 * q[i].personScore.toString().length * (q[i].personScore != q[i].eqFullScore) - 8 * q[i].eqFullScore.toString().length - ofs}px">${q[i].qstTagName}</span></li>`
         }
         $('#detailDat').html(str + '</ul>')
         $("[data-toggle='tooltip']").tooltip();