Examination_system/Examination_system-1/.svn/pristine/2b/2b2ed31badb093c6f0604a91715...

40 lines
1.3 KiB
Plaintext
Raw Normal View History

2023-10-30 13:10:40 +08:00
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<c:choose>
<c:when test="${page.totalRecord > 0}">
<c:forEach items="${page.results}" var="post" varStatus="index">
<tr ondblclick="setChecked(${post.id})">
<th class="center" style='vertical-align:middle;'>
<label>
<input type="checkbox" id="inp${post.id}" value="${post.id}" class="ace inp cb" >
<span class="lbl">
</span>
</label>
</th>
<th style='vertical-align:middle;' class="center hidden-480">${(page.pageNum-1)*page.pageSize+index.index+1}</th>
<th style='vertical-align:middle;' class="center ">${post.name}</th>
<th style='vertical-align:middle;' class="center ">${post.duty}</th>
<th style='vertical-align:middle;' class="center">
<c:choose>
<c:when test="${post.isActive eq 1}">
</c:when>
<c:otherwise>
</c:otherwise>
</c:choose>
</th>
</tr>
</c:forEach>
<tr>
<td colspan="5" class="center" >
<%@include file="../paging.jsp" %>
</td>
</tr>
</c:when>
<c:otherwise>
<tr><td colspan='5' class='center'>没有相关数据</td></tr>
</c:otherwise>
</c:choose>