openHouseView.jsp 2.92 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" >

		var selItems = new Array(); 
		
		$(document).ready(function() {});
		
		function page(n,s){
			$("#pageNo").val(n);
			$("#pageSize").val(s);
			$("#searchForm").submit();
        	return false;
        }

		function winOpenBdcdjxx(bdcdyh){
			//弹出窗口的宽度; 
			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/base/regBaseC/openHouseView?&ywh=${ywh}&cxfs=${cxfs}&DJLX=${DJLX}&bdcdyh="+bdcdyh;
	       	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>
	<ul class="nav nav-tabs">
		<li class="active"><a href="javascript:void(0);">可选楼盘信息列表</a></li>
	</ul>
	<form:form id="searchForm"  modelAttribute="regBusBdcqzsdjxx"  action="${ctx}/reg/bus/regBusBdcqzsdjxx/openHouseView?ywh=${ywh}&DJLX=${DJLX}"  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>&nbsp;&nbsp;&nbsp;不动产单元号:
				<form:input id="txtBdcdyh" path="bdcdyh" htmlEscape="false" maxlength="28" class="input-medium"/>
			</li>
			<li>&nbsp;&nbsp;&nbsp;&nbsp;<input id="btnSubmit" class="btn btn-primary"  type="submit" value="查询"/></li>
			<li class="clearfix"></li>
		</ul>
	</form:form>
	
	<sys:message content="${message}"/>

	<div id="srcBaseInfo"  class="control-group" >
			<fieldset>
					<table id="contentTable"  class="table table-striped table-bordered table-condensed" >
						<thead>
							<tr>
								<th>不动产单元号</th>
								<th>坐落</th>
								<th>用途</th>
								<th>建筑面积</th>
								<th></th>
							</tr>
						</thead>
						<tbody>
						<c:forEach items="${page.list}" var="regBusBdcqzsdjxx">
							<tr>
								<td>
									${regBusBdcqzsdjxx.bdcdyh}
								</td>
								<td>
									${regBusBdcqzsdjxx.zl}
								</td>
								<td>
									${regBusBdcqzsdjxx.yt}
								</td>
								<td>
									${regBusBdcqzsdjxx.mj}
								</td>
								<td>
									<a href="javascript:void(0);" onclick="winOpenBdcdjxx('${regBusBdcqzsdjxx.bdcdyh}')">
									立体展示
									</a>
								</td>
							</tr>
						</c:forEach>
						</tbody>
					</table>
					<div class="pagination">${page}</div>
			</fieldset>
	</div>
</body>
</html>