79a8f3ebc0112a0414598d06b5c8d9febe1ab660.svn-base
2.87 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
<%@ 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/regBusSz/szlist">缮证信息列表</a></li>
</ul>
<form:form id="searchForm" modelAttribute="regBusSz" action="${ctx}/reg/bus/regBusSz/szlist" 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}"/>
<tr>
<td>业务号</td>
<td>
<form:input path="ywh" htmlEscape="false" maxlength="20" class="input-medium"/>
</td>
<td>缮证名称</td>
<td>
<form:select path="szmc" class="input-medium required">
<form:option value="" label=""/>
<form:options items="${fns:getDictList('reg_bus_szmc')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
</form:select>
</td>
<td>缮证起始证编号</td>
<td>
<form:input path="szzh" htmlEscape="false" maxlength="50" class="input-medium"/>
</td>
<td>缮证时间</td>
<td>
<input name="szsj" maxlength="20" class="input-medium Wdate required"
value="<fmt:formatDate value="${regBusSz.szsj}" pattern="yyyy-MM-dd"/>"
onclick="WdatePicker({dateFmt:'yyyy-MM-dd' });">
</td>
<td class="btns"><input id="btnSubmit" class="btn btn-primary" type="submit" value="查询"/></td>
<td class="clearfix"></td>
</tr>
</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>
</tr>
</thead>
<tbody>
<c:forEach items="${page.list}" var="regBusSz">
<tr>
<td><a href="${ctx}/reg/bus/regBusSz/szform?id=${regBusSz.id}">
${regBusSz.ywh}
</a></td>
<td>
${fns:getDictLabel(regBusSz.szmc, 'reg_bus_szmc', '')}
</td>
<td>
${fns:getDictLabel(regBusSz.isdz, 'yes_no', '')}
</td>
<td>
${regBusSz.szzh}
</td>
<td>
${regBusSz.szsl}
</td>
<td>
${regBusSz.szry}
</td>
<td>
${regBusSz.currmaxszbh}
</td>
<td>
${regBusSz.ysxlh}
</td>
<td>
<fmt:formatDate value="${regBusSz.szsj}" pattern="yyyy-MM-dd"/>
</td>
</tr>
</c:forEach>
</tbody>
</table>
<div class="pagination">${page}</div>
</body>
</html>