|
@@ -12,23 +12,23 @@
|
|
|
</head>
|
|
|
<body>
|
|
|
<ul class="nav nav-tabs">
|
|
|
-<c:if test="${fn:contains(role_privilege_codes, 'exam_mark-mark')}">
|
|
|
+<c:if test="${fnx:hasPrivilegeCode(role_privilege_codes, 'exam_mark-mark')}">
|
|
|
<li><a href="${ctx}/admin/exam/mark?subjectCode=${subject.code}">评卷进度</a></li>
|
|
|
</c:if>
|
|
|
<li class="active"><a href="##">分组管理</a></li>
|
|
|
- <c:if test="${fn:contains(role_privilege_codes, 'exam_mark-marker')}">
|
|
|
+ <c:if test="${fnx:hasPrivilegeCode(role_privilege_codes, 'exam_mark-marker')}">
|
|
|
<li><a href="${ctx}/admin/exam/marker?subjectCode=${subject.code}">评卷员管理</a></li>
|
|
|
</c:if>
|
|
|
- <c:if test="${fn:contains(role_privilege_codes, 'exam_mark-trial')}">
|
|
|
+ <c:if test="${fnx:hasPrivilegeCode(role_privilege_codes, 'exam_mark-trial')}">
|
|
|
<li><a href="${ctx}/admin/exam/trial?subjectCode=${subject.code}">试评管理</a></li>
|
|
|
</c:if>
|
|
|
- <c:if test="${fn:contains(role_privilege_codes, 'exam_mark-library')}">
|
|
|
+ <c:if test="${fnx:hasPrivilegeCode(role_privilege_codes, 'exam_mark-library')}">
|
|
|
<li><a href="${ctx}/admin/exam/library?subjectCode=${subject.code}">任务管理</a></li>
|
|
|
</c:if>
|
|
|
- <c:if test="${fn:contains(role_privilege_codes, 'exam_mark-arbitrate')}">
|
|
|
+ <c:if test="${fnx:hasPrivilegeCode(role_privilege_codes, 'exam_mark-arbitrate')}">
|
|
|
<li><a href="${ctx}/admin/exam/arbitrate?subjectCode=${subject.code}">仲裁管理</a></li>
|
|
|
</c:if>
|
|
|
- <c:if test="${fn:contains(role_privilege_codes, 'exam_mark-quality')}">
|
|
|
+ <c:if test="${fnx:hasPrivilegeCode(role_privilege_codes, 'exam_mark-quality')}">
|
|
|
<li><a href="${ctx}/admin/exam/quality?subjectCode=${subject.code}">质量监控</a></li>
|
|
|
</c:if>
|
|
|
</ul>
|
|
@@ -43,7 +43,7 @@
|
|
|
|
|
|
<input id="btnSubmit" class="btn btn-primary" type="submit" value="查询"/>
|
|
|
|
|
|
- <c:if test="${fn:contains(role_privilege_codes, 'exam_mark-group-add')}">
|
|
|
+ <c:if test="${fnx:hasPrivilegeCode(role_privilege_codes, 'exam_mark-group-add')}">
|
|
|
|
|
|
<a href="${ctx}/admin/exam/group/add?subjectCode=${subject.code}" class="btn">新增</a>
|
|
|
</c:if>
|
|
@@ -86,10 +86,10 @@
|
|
|
<td>${result.scoreList}</td>
|
|
|
<td>${result.selectiveIndex}</td>
|
|
|
<td>
|
|
|
- <c:if test="${fn:contains(role_privilege_codes, 'exam_mark-marker')}">
|
|
|
+ <c:if test="${fnx:hasPrivilegeCode(role_privilege_codes, 'exam_mark-marker')}">
|
|
|
<a href="${ctx}/admin/exam/marker?subjectCode=${result.subjectCode}&groupNumber=${result.number}">${result.markerCount}</a>
|
|
|
</c:if>
|
|
|
- <c:if test="${!fn:contains(role_privilege_codes, 'exam_mark-marker')}">
|
|
|
+ <c:if test="${!fnx:hasPrivilegeCode(role_privilege_codes, 'exam_mark-marker')}">
|
|
|
${result.markerCount}
|
|
|
</c:if>
|
|
|
</td>
|
|
@@ -126,11 +126,11 @@
|
|
|
<a href="${ctx}/admin/exam/group/reset?subjectCode=${result.subjectCode}&number=${result.number}" data-number="${result.number}" class="reset-button">重置</a>
|
|
|
</c:if> --%>
|
|
|
|
|
|
- <c:if test="${examType!='MULTI_MEDIA' && fn:contains(role_privilege_codes, 'exam_mark-group-edit')}">
|
|
|
+ <c:if test="${examType!='MULTI_MEDIA' && fnx:hasPrivilegeCode(role_privilege_codes, 'exam_mark-group-edit')}">
|
|
|
<a href="${ctx}/admin/exam/group/edit-simple?subjectCode=${result.subjectCode}&number=${result.number}" data-number="${result.number}" class="edit-button">修改</a>
|
|
|
|
|
|
</c:if>
|
|
|
- <c:if test="${examType=='MULTI_MEDIA' && fn:contains(role_privilege_codes, 'exam_mark-group-delete')}">
|
|
|
+ <c:if test="${examType=='MULTI_MEDIA' && fnx:hasPrivilegeCode(role_privilege_codes, 'exam_mark-group-delete')}">
|
|
|
<a href="${ctx}/admin/exam/group/delete?subjectCode=${result.subjectCode}&number=${result.number}" data-number="${result.number}" class="delete-button">删除</a>
|
|
|
|
|
|
</c:if>
|