196d695c3a55b582c2a46502dbb1a98f22672128.svn-base 3.2 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/base/regBaseLjz/">逻辑幢信息列表</a></li>
		<shiro:hasPermission name="reg:base:regBaseLjz:edit"><li><a href="${ctx}/reg/base/regBaseLjz/form">逻辑幢信息添加</a></li></shiro:hasPermission>
	</ul>
	<form:form id="searchForm" modelAttribute="regBaseLjz" action="${ctx}/reg/base/regBaseLjz/" 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="ljzh" htmlEscape="false" maxlength="20" class="input-medium"/>
			</li>
			<li><label>自然幢号:</label>
				<form:input path="zrzh" htmlEscape="false" maxlength="24" class="input-medium"/>
			</li>
			<li><label>门牌号:</label>
				<form:input path="mph" htmlEscape="false" maxlength="50" class="input-medium"/>
			</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>
				<th>地下层数</th>
				<shiro:hasPermission name="reg:base:regBaseLjz:edit"><th>操作</th></shiro:hasPermission>
			</tr>
		</thead>
		<tbody>
		<c:forEach items="${page.list}" var="regBaseLjz">
			<tr>
				<td><a href="${ctx}/reg/base/regBaseLjz/form?id=${regBaseLjz.id}&VIEWS=1">
					${regBaseLjz.ljzh}
				</a></td>
				<td>
					${regBaseLjz.zrzh}
				</td>
				<td>
					${regBaseLjz.mph}
				</td>
				<td>
					${regBaseLjz.ycjzmj}
				</td>
				<td>
					${regBaseLjz.ycdxmj}
				</td>
				<td>
					${regBaseLjz.ycqtmj}
				</td>
				<td>
					${regBaseLjz.scjzmj}
				</td>
				<td>
					${regBaseLjz.scdxmj}
				</td>
				<td>
					${regBaseLjz.scqtmj}
				</td>
				<td>
					${regBaseLjz.zcs}
				</td>
				<td>
					${regBaseLjz.dscs}
				</td>
				<td>
					${regBaseLjz.dxcs}
				</td>
				<shiro:hasPermission name="reg:base:regBaseLjz:edit"><td>
    				<a href="${ctx}/reg/base/regBaseLjz/form?id=${regBaseLjz.id}">修改</a>
					<a href="${ctx}/reg/base/regBaseLjz/delete?id=${regBaseLjz.id}" onclick="return confirmx('确认要删除该逻辑幢信息吗?', this.href)">删除</a>
				</td></shiro:hasPermission>
			</tr>
		</c:forEach>
		</tbody>
	</table>
	<div class="pagination">${page}</div>
</body>
</html>