143a8f1dbd758e21571d56db1982f1ac8572c077.svn-base 3.21 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/regBusDyiq/">地役权信息列表</a></li>
		<shiro:hasPermission name="reg:bus:regBusDyiq:edit"><li><a href="${ctx}/reg/bus/regBusDyiq/form">地役权信息添加</a></li></shiro:hasPermission>
	</ul>
	<form:form id="searchForm" modelAttribute="regBusDyiq" action="${ctx}/reg/bus/regBusDyiq/" 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="ywh" htmlEscape="false" maxlength="20" class="input-medium"/>
			</li>
			<li><label>供役地不动产单元号:</label>
				<form:input path="gydbdcdyh" 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>
				<th>登簿人</th>
				<th>登记时间</th>
				<shiro:hasPermission name="reg:bus:regBusDyiq:edit"><th>操作</th></shiro:hasPermission>
			</tr>
		</thead>
		<tbody>
		<c:forEach items="${page.list}" var="regBusDyiq">
			<tr>
				<td><a href="${ctx}/reg/bus/regBusDyiq/form?id=${regBusDyiq.id}&VIEWS=1">
					${regBusDyiq.ysdm}
				</a></td>
				<td>
					${regBusDyiq.ywh}
				</td>
				<td>
					${regBusDyiq.gydbdcdyh}
				</td>
				<td>
					${regBusDyiq.gydqlr}
				</td>
				<td>
					${fns:getDictLabel(regBusDyiq.gydqlrzjzl, 'reg_bus_zjlx', '')}
				</td>
				<td>
					${regBusDyiq.gydqlrzjh}
				</td>
				<td>
					${fns:getDictLabel(regBusDyiq.djlx, 'reg_bus_djlx', '')}
				</td>
				<td>
					${fns:getDictLabel(regBusDyiq.qxdm, 'reg_bus_xq', '')}
				</td>
				<td>
					${regBusDyiq.djjg}
				</td>
				<td>
					${regBusDyiq.dbr}
				</td>
				<td>
					<fmt:formatDate value="${regBusDyiq.djsj}" pattern="yyyy-MM-dd HH:mm:ss"/>
				</td>
				<shiro:hasPermission name="reg:bus:regBusDyiq:edit"><td>
    				<a href="${ctx}/reg/bus/regBusDyiq/form?id=${regBusDyiq.id}">修改</a>
					<a href="${ctx}/reg/bus/regBusDyiq/delete?id=${regBusDyiq.id}" onclick="return confirmx('确认要删除该地役权信息吗?', this.href)">删除</a>
				</td></shiro:hasPermission>
			</tr>
		</c:forEach>
		</tbody>
	</table>
	<div class="pagination">${page}</div>
</body>
</html>