a1bc9d8dcf97958faad3f7c2d84c0d77646cc6fa.svn-base 4.04 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;
        }
		
		function winOpenBdcdjxx(id,ywh){
			//弹出窗口的宽度; 
			var iWidth=1100; 
			//弹出窗口的高度;
	       	var iHeight=600;
	       	//获得窗口的垂直位置 
	       	var iTop = (window.screen.height - 30 - iHeight) / 2;
	       	//获得窗口的水平位置 
	       	var iLeft = (window.screen.width - 10 - iWidth) / 2;
			var url = "${ctx}/reg/bus/regBusBdcqzsdjxx/selectZh?zhcx=1&ID="+id;
			window.open(url, "窗口", "width=" + iWidth + ", height=" + iHeight + ",top=" + iTop + ",left=" + iLeft + ",toolbar=no, menubar=no, scrollbars=yes, resizable=no,location=no, status=no,alwaysRaised=yes,depended=yes");
		}
	</script>
</head>
<body>
	<form:form id="searchForm" modelAttribute="regBusBdcqzsdjxx" action="${ctx}/reg/bus/regBusBdcqzsdjxx/selectZh?zhcx=1" 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}"/>
		<sys:tableSort id="orderBy" name="orderBy" value="${page.orderBy}" callback="page();"/>
		<ul class="ul-form">
			<li>&nbsp;&nbsp;&nbsp;&nbsp;业务编号:
				<form:input path="ywh" htmlEscape="false" maxlength="20" class="input-medium"/>
			</li>
			<li>&nbsp;&nbsp;&nbsp;&nbsp;不动产单元号:
				<form:input path="bdcdyh" htmlEscape="false" maxlength="28" class="input-xlarge"/>
			</li>
			<li>&nbsp;&nbsp;&nbsp;&nbsp;不动产权证号:
				<form:input path="bdcqzh" htmlEscape="false" maxlength="200" class="input-xlarge"/>
			</li>
			<li>&nbsp;&nbsp;&nbsp;&nbsp;登记类型:&nbsp;&nbsp;
				<form:select path="djlx" class="input-xlarge">
					<form:option value="" label=""/>
					<form:options items="${fns:getDictList('reg_bus_djxl')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
				</form:select>
			</li>
			<li>&nbsp;&nbsp;&nbsp;&nbsp;权利人名称:
				<form:input path="qlrmc" htmlEscape="false" maxlength="200" class="input-xlarge"/>
			</li>
			<li>&nbsp;&nbsp;&nbsp;&nbsp;证件号:
				<form:input path="gyqk" htmlEscape="false" maxlength="200" class="input-xlarge"/>
			</li>
			<li>&nbsp;&nbsp;&nbsp;&nbsp;坐落:
				<form:input path="zl" htmlEscape="false" maxlength="200" 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 class="sort-column ywh">业务号</th>
					<th class="sort-column bdcdyh">不动产单元号</th>
					<th class="sort-column bdcqzh">证号</th>
					<th class="sort-column djlx">业务类型</th>
					<th class="sort-column qlrmc">权利人</th>
					<th class="sort-column zl">坐落</th>
					<th>业务状态</th>
					<th>确权类型</th>
					<th>操作</th>
				</tr>
			</thead>
			<tbody>
			<c:forEach items="${page.list}" var="regBusBdcqzsdjxx">
				<tr>
					<td>
						${regBusBdcqzsdjxx.ywh}
					</td>
					<td>
						${regBusBdcqzsdjxx.bdcdyh}
					</td>
					<td>
						${regBusBdcqzsdjxx.bdcqzh}
					</td>
					<td>
						${regBusBdcqzsdjxx.djlx}
					</td>
					<td>
						${regBusBdcqzsdjxx.qlgyr}
					</td>
					<td>
						${regBusBdcqzsdjxx.zl}
					</td>
					<td>
						${regBusBdcqzsdjxx.islogout}
					</td>
					<td>
						${regBusBdcqzsdjxx.qqbz}
					</td>
					<td>
						<a href="javascript:void(0);" onclick="winOpenBdcdjxx('${regBusBdcqzsdjxx.id}','${regBusBdcqzsdjxx.ywh}')">
						查看详细
						</a>
					</td>
				</tr>
			</c:forEach>
			</tbody>
		</table>
		<div class="pagination">${page}</div>
</body>
</html>