Examination_system/Examination_system-1/.svn/pristine/0e/0e4a0eb2cf210841081f89a664d...

47 lines
1.5 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" %>
<%@ taglib prefix="fns" uri="/WEB-INF/tlds/fns.tld" %>
<c:choose>
<c:when test="${page.totalRecord > 0}">
<c:forEach items="${page.results}" var="item" varStatus="index">
<tr ondblclick="setChecked(${item.id})">
<th style="vertical-align:middle;width:5%" class="center">
<label>
<input type="checkbox" id="inp${item.id}" value="${item.id}" class="ace inp cb" >
<span class="lbl">
</span>
</label>
</th>
<th style='vertical-align:middle;' class="center">${(page.pageNum-1)*page.pageSize+index.index+1}</th>
<th style='vertical-align:middle;' >${item.code}</th>
<th style='vertical-align:middle;' class="center">${item.name}</th>
<th style='vertical-align:middle;' class="center">${fns:nullPlaceholder(item.user.name,'----')}</th>
<th style='vertical-align:middle;' class="center">
<c:choose>
<c:when test="${item.isActive eq 1}">
启用
</c:when>
<c:otherwise>
停用
</c:otherwise>
</c:choose>
</th>
</tr>
</c:forEach>
<tr>
<td colspan="6" class="center" >
<%@include file="../paging.jsp" %>
</td>
</tr>
</c:when>
<c:otherwise>
<tr><td colspan='6' class='center'>没有相关数据</td></tr>
</c:otherwise>
</c:choose>