1a1a5a5778913e80b8a514dc10622c05838e061a.svn-base 3.25 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 houseAllInfo(zrzh,ljzh,xmmc,ywh,djlx,ftfs){
			
			//弹出窗口的宽度; 
			var iWidth=1100; 
			//弹出窗口的高度;
	       	var iHeight=600;
	       	//获得窗口的垂直位置
	       	var iTop = (window.screen.height - 30 - iHeight) / 2;
	       	//获得窗口的水平位置 
	       	var iLeft = (window.screen.width - 10 - iWidth) / 2;
			window.open("${ctx}/reg/base/regBaseC/zchListView?ZRZH="+zrzh+"&LJZH="+ljzh+"&XMID=${XMID}&XMMC="+xmmc,"楼盘立体展示","height="+ iHeight +",width="+ iWidth +",top="+ iTop +",left="+ iLeft +",toolbar=no,menubar=no,scrollbars=yes, resizable=no,location=no, status=no");
				
		}
	</script>
	<style>
		.otable-form{width:100%;border-color:#dddddd;border:1px solid #ddd;}
		.otable-form,.table-form td{background-color:#fdfdfd;padding:2px;} 
		.otable-form td.tit{background:#fafafa;text-align:right;padding-right:3px;white-space:nowrap;}
		.caozuo{width:100%;text-align:right;margin-top:3px;margin-bottom:10px;}
	</style>
</head>
<body>
	<ul class="nav nav-tabs">
		<li class="active"><a href="${ctx}/reg/base/regBaseZrz/guideListView?XMID=${XMID}">逻辑幢信息列表</a></li>
	</ul>
	<form:form class="breadcrumb form-search">
	<ul class="ul-form">
			
			<li class="btns"><input id="btnCancel" class="btn" type="button" value="返回" onclick="history.go(-1)"/></li>
			<li class="clearfix"></li>
		</ul>
	</form:form>
	<sys:message content="${message}"/>
	<div class="form-horizontal">
	<div class="current_fwinfo">当前项目【${regBaseXmmc}】,一共包含【${zCount}】幢楼</div>
		<table id="contentTable" class="table table-striped table-bordered table-condensed">
		<thead>
			<tr>
				<th>逻辑幢号</th>
				<th>自然幢号</th>
				<th>项目名称</th> 
				<th>实测建筑面积</th>
				<th>总层数</th> 
				<shiro:hasPermission name="reg:base:regBaseZrz:edit"><th>操作</th></shiro:hasPermission>
			</tr>
		</thead>
		<tbody>
		<c:forEach items="${page.list}" var="regBaseLjz">
			<tr>
				<td><a href="#">
					${regBaseLjz.ljzh}
				</a></td>
				<td>
					${regBaseLjz.zrzh}
				</td>
				
				<td>
					${regBaseXmmc}
				</td> 
				<td>
					${regBaseLjz.scjzmj}
				</td>
				<td>
					${regBaseLjz.zcs}
				</td>
				<shiro:hasPermission name="reg:base:regBaseZrz:edit"><td>
				<!-- <a href="${ctx}/reg/base/regBaseC/zchGuideListView?ZID=${regBaseZrz.id}&XMMC=${regBaseXmmc}&ywh=${ywh}&djlx=${DJLX}">楼盘整体信息</a>
					 -->
					<a href="javascript:void(0);" onclick="houseAllInfo('${regBaseLjz.zrzh}','${regBaseLjz.ljzh}','${regBaseXmmc}','${ywh}','${DJLX}','${ftfs}');">楼盘整体信息</a>
					
					<a href="${ctx}/reg/base/regBaseC/list?zrzh=${regBaseLjz.zrzh}&ljzh=${regBaseLjz.ljzh}&XMMC=${regBaseXmmc}&XMID=${XMID}&DZ=${DZ}">层信息</a>
				</td></shiro:hasPermission>
			</tr>
		</c:forEach>
		</tbody>
	</table>
	</div>
	<div class="pagination">${page}</div>
</body>
</html>