79a8f3ebc0112a0414598d06b5c8d9febe1ab660.svn-base 2.87 KB
<%@ 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>