ting.yin 4 anni fa
parent
commit
025873773a

+ 2 - 2
stmms-web/src/main/webapp/WEB-INF/views/modules/exam/qualityChart.jsp

@@ -33,7 +33,7 @@
 				<c:forEach items="${scores}" var="score">
 					<td>
 					<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>
 					</td>
 				</c:forEach>
@@ -108,7 +108,7 @@ $.post('${ctx}/admin/exam/quality/getChart', {subjectCode: subjectCode,groupNumb
 		};
 	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");    
 }
 </script>