Examination_system/Examination_system-1/.svn/pristine/08/0896941f0114e54c4dbc4e30229...

38 lines
1.2 KiB
Plaintext

<%@ page contentType="text/html;charset=UTF-8" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<c:choose>
<c:when test="${page.totalRecord > 0}">
<c:forEach items="${page.results}" var="dict">
<tr ondblclick="setChecked(${dict.id})">
<th class="center">
<label>
<input type="checkbox" id="inp${dict.id}" value="${dict.id}" class="ace inp" >
<span class="lbl">
</span>
</label>
</th>
<th class="center hidden-480">${dict.id}</th>
<th class="center">${dict.dictType.name}</th>
<th class="center">${dict.name}</th>
<th class="center">${dict.value}</th>
<th class='center hidden-480'>
<c:if test="${dict.isActive eq 1}">是</c:if>
<c:if test="${dict.isActive != 1}">否</c:if>
</th>
<th class="center">
<a href='#' title='查看' onclick='view(${dict.id})' class='aBtnNoTD' ><i class='icon-zoom-in color-p bigger-140'></i></a>
</th>
</tr>
</c:forEach>
<tr>
<td colspan="7" class="center" >
<%@include file="../paging.jsp" %>
</td>
</tr>
</c:when>
<c:otherwise>
<tr><td colspan='5' class='center'>没有相关数据</td></tr>
</c:otherwise>
</c:choose>