|
@@ -33,7 +33,7 @@
|
|
<c:forEach items="${scores}" var="score">
|
|
<c:forEach items="${scores}" var="score">
|
|
<td>
|
|
<td>
|
|
<c:if test="${marker.scoreCount[score]!=null}">
|
|
<c:if test="${marker.scoreCount[score]!=null}">
|
|
- <a href="##" onclick="openTab(${subjectCode},${marker.id},${score})">${marker.scoreCount[score] }</a></c:if>
|
|
|
|
|
|
+ <a href="##" onclick="openTab(${marker.id},${score})">${marker.scoreCount[score] }</a></c:if>
|
|
<c:if test="${marker.scoreCount[score]==null }">0</c:if>
|
|
<c:if test="${marker.scoreCount[score]==null }">0</c:if>
|
|
</td>
|
|
</td>
|
|
</c:forEach>
|
|
</c:forEach>
|
|
@@ -108,7 +108,7 @@ $.post('${ctx}/admin/exam/quality/getChart', {subjectCode: subjectCode,groupNumb
|
|
};
|
|
};
|
|
myChart.setOption(option);
|
|
myChart.setOption(option);
|
|
});
|
|
});
|
|
-function openTab(subjectCode,markerId,markerScore){
|
|
|
|
|
|
+function openTab(markerId,markerScore){
|
|
window.open('${ctx}/web/admin/exam/quality?subjectCode='+subjectCode+'&markerId='+markerId+'&markerScore='+markerScore,"_blank");
|
|
window.open('${ctx}/web/admin/exam/quality?subjectCode='+subjectCode+'&markerId='+markerId+'&markerScore='+markerScore,"_blank");
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|