<%@ page contentType="text/html;charset=UTF-8"%> <%@ include file="/WEB-INF/views/include/taglib.jsp"%> <html> <head> <title>人员信息管理</title> <script type="text/javascript" src="${ctxStatic}/readcard/jBox/jquery.jBox-2.3.min.js"></script> <script type="text/javascript" src="${ctxStatic}/readcard/js/baseISSObject.js"></script> <script type="text/javascript" src="${ctxStatic}/readcard/js/baseISSOnline.js"></script> <script type="text/javascript" src="${ctxStatic}/readcard/js/common.js"></script> <meta name="decorator" content="default" /> <script type="text/javascript"> $(document).ready(function() { }); function page(n, s) { $("#pageNo").val(n); $("#pageSize").val(s); $("#searchForm").submit(); return false; } </script> </head> <body> <p id="cert_message" style="display: none;"></p> <p id="cert_message_type" style="display: none;"></p> <form:form id="searchForm" modelAttribute="regBusInterHis" action="${ctx}/InterSi/list" method="post" class="breadcrumb form-search"> <input id="pageNo" name="pageNo" type="hidden" value="${page.pageNo}" /> <input id="pcode" name="pcode" type="hidden" value="${pcode}" /> <input id="pageSize" name="pageSize" type="hidden" value="${page.pageSize}" /> <table> <tr> </tr> </table> </form:form> <sys:message content="${message}" /> <table id="contentTable" class="table table-bordered table-condensed"> <thead> <tr> <th>人员编码</th> <th>人员名称</th> <th>证件号</th> <th>业务名称</th> <th>核验类型</th> <th>结果</th> <th>描述</th> <th>核验时间</th> <th>核验人</th> </tr> </thead> <tbody> <c:forEach items="${page.list}" var="regBusInterHis"> <tr> <td>${regBusInterHis.pcode}</td> <td>${regBusInterHis.rymc} </td> <td>${regBusInterHis.zjhm} </td> <td>${regBusInterHis.chyw} </td> <td>${regBusInterHis.jkmc}</td> <td> <c:choose> <c:when test="${regBusInterHis.veritydatazt eq '1'}"> 通过 </c:when> <c:otherwise> 未通过 </c:otherwise> </c:choose> </td> <td>${regBusInterHis.veritydatamsg}</td> <td><fmt:formatDate value="${regBusInterHis.createDate}" pattern="yyyy-MM-dd HH:mm:ss" /></td> <td>${regBusInterHis.createuser}</td> </tr> </c:forEach> </tbody> </table> <div class="pagination">${page}</div> </body> </html>