c405cff209ec3144dd194ded43237b7b8481d85e.svn-base
2.68 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/WEB-INF/views/include/taglib.jsp"%>
<html>
<head>
<title>发证信息管理</title>
<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>
<ul class="nav nav-tabs">
<li class="active"><a href="${ctx}/reg/bus/regBusFz/fzlist">发证信息列表</a></li>
</ul>
<form:form id="searchForm" modelAttribute="regBusFz" action="${ctx}/reg/bus/regBusFz/fzlist" method="post" class="breadcrumb form-search">
<input id="pageNo" name="pageNo" type="hidden" value="${page.pageNo}"/>
<input id="pageSize" name="pageSize" type="hidden" value="${page.pageSize}"/>
<ul class="ul-form">
<li><label>业务号:</label>
<form:input path="ywh" htmlEscape="false" maxlength="20" class="input-medium"/>
</li>
<li><label>发证名称:</label>
<form:input path="fzmc" htmlEscape="false" maxlength="50" class="input-medium"/>
</li>
<li class="btns"><input id="btnSubmit" class="btn btn-primary" type="submit" value="查询"/></li>
<li class="clearfix"></li>
</ul>
</form:form>
<sys:message content="${message}"/>
<table id="contentTable" class="table table-striped table-bordered table-condensed">
<thead>
<tr>
<th>业务号</th>
<th>要素代码</th>
<th>发证人员</th>
<th>发证时间</th>
<th>发证名称</th>
<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="regBusFz">
<tr>
<td><a href="${ctx}/reg/bus/regBusFz/fzform?id=${regBusFz.id}&VIEWS=1">
${regBusFz.ywh}
</a></td>
<td>
${regBusFz.ysdm}
</td>
<td>
${regBusFz.fzry}
</td>
<td>
<fmt:formatDate value="${regBusFz.fzsj}" pattern="yyyy-MM-dd"/>
</td>
<td>
${regBusFz.fzmc}
</td>
<td>
${regBusFz.fzsl}
</td>
<td>
${regBusFz.hfzsh}
</td>
<td>
${regBusFz.lzrxm}
</td>
<td>
${fns:getDictLabel(regBusFz.lzrzjlb, 'reg_bus_zjlx', '')}
</td>
<td>
${regBusFz.lzrzjh}
</td>
<td>
${regBusFz.lzrdh}
</td>
<td>
${regBusFz.lzrdz}
</td>
<td>
${regBusFz.lzryb}
</td>
<td>
${regBusFz.bz}
</td>
</tr>
</c:forEach>
</tbody>
</table>
<div class="pagination">${page}</div>
</body>
</html>