7775cd5db2c7207db14fe0b1550acff95019316c.svn-base 3.21 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/regBusGd/gdlist">归档信息列表</a></li>
	</ul>
	<form:form id="searchForm" modelAttribute="regBusGd" action="${ctx}/reg/bus/regBusGd/gdlist" 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="qzhm" htmlEscape="false"  class="input-medium"/>
			</li>
			<li><label>档案位置</label>
				<form:input path="dawzsxh" htmlEscape="false" maxlength="20" class="input-medium"/>
			</li>
			<li><label>登记大类</label>
				<form:select path="djdl" class="input-medium ">
						<form:option value="" label=""/>
						<form:options items="${fns:getDictList('reg_bus_djlx')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
				</form:select>
			</li>
			<li><label>登记小类</label>
				<form:select path="djxl" class="input-medium ">
						<form:option value="" label=""/>
						<form:options items="${fns:getDictList('reg_bus_djxl')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
				</form:select>
			</li>
			<li><label>坐落</label>
				<form:input path="zl" htmlEscape="false"   class="input-xxlarge"/>
			</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>
			</tr>
		</thead>
		<tbody>
		<c:forEach items="${page.list}" var="regBusGd">
			<tr>
				<td><a href="${ctx}/reg/bus/regBusGd/gdform?id=${regBusGd.id}&VIEWS=1">
					${regBusGd.ywh}
				</a></td>
				<td>
					${fns:getDictLabel(regBusGd.djdl, 'reg_bus_djlx', '')}
				</td>
				<td>
					${fns:getDictLabel(regBusGd.djxl, 'reg_bus_djxl', '')}
				</td>
				<td>
					${regBusGd.zl}
				</td>
				<td>
					${regBusGd.qzhm}
				</td>
				<td>
					${regBusGd.dawz}
				</td>
				<td>
					${regBusGd.wjjs}
				</td>
				<td>
					${regBusGd.zys}
				</td>
				<td>
					${regBusGd.gdry}
				</td>
				<td>
					<fmt:formatDate value="${regBusGd.gdsj}" pattern="yyyy-MM-dd"/>
				</td>
				<td>
					${regBusGd.bz}
				</td>
			</tr>
		</c:forEach>
		</tbody>
	</table>
	<div class="pagination">${page}</div>
</body>
</html>