78bcfcfab83c3788681af2166cb939f68eb64802.svn-base
2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<%@ 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>