5a8c770327892839c31852a286621869345c38c5.svn-base 2.86 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/regBusRights/">确权信息列表</a></li>
		<shiro:hasPermission name="reg:bus:regBusRights:edit"><li><a href="${ctx}/reg/bus/regBusRights/form">确权信息添加</a></li></shiro:hasPermission>
	</ul>
	<form:form id="searchForm" modelAttribute="regBusRights" action="${ctx}/reg/bus/regBusRights/" 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="bdcdyh" htmlEscape="false" maxlength="28" 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>
				<shiro:hasPermission name="reg:bus:regBusRights:edit"><th>操作</th></shiro:hasPermission>
			</tr>
		</thead>
		<tbody>
		<c:forEach items="${page.list}" var="regBusRights">
			<tr>
				<td><a href="${ctx}/reg/bus/regBusRights/form?id=${regBusRights.id}">
					${regBusRights.bdcdyh}
				</a></td>
				<td>
					${regBusRights.ssouyq}
				</td>
				<td>
					${regBusRights.stxq}
				</td>
				<td>
					${regBusRights.sshiyq}
				</td>
				<td>
					${regBusRights.xsouyq}
				</td>
				<td>
					${regBusRights.xtxq}
				</td>
				<td>
					${regBusRights.xshiyq}
				</td>
				<td>
					<fmt:formatDate value="${regBusRights.updateDate}" pattern="yyyy-MM-dd HH:mm:ss"/>
				</td>
				<td>
					${regBusRights.remarks}
				</td>
				<shiro:hasPermission name="reg:bus:regBusRights:edit"><td>
    				<a href="${ctx}/reg/bus/regBusRights/form?id=${regBusRights.id}">修改</a>
					<a href="${ctx}/reg/bus/regBusRights/delete?id=${regBusRights.id}" onclick="return confirmx('确认要删除该确权信息吗?', this.href)">删除</a>
				</td></shiro:hasPermission>
			</tr>
		</c:forEach>
		</tbody>
	</table>
	<div class="pagination">${page}</div>
</body>
</html>