regBusQlrxxForm.jsp 2.12 KB
<%@ page contentType="text/html;charset=UTF-8"%>
<%@ include file="/WEB-INF/views/include/taglib.jsp"%>
<html>
<head>
<title>
<c:if test="${DJLX ne '302'}"> 
权利人信息管理
</c:if>
</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="javascript:void(0);">
		权利人信息列表
		</a></li>
		<shiro:hasPermission name="reg:bus:regBusQlr:edit">
			<c:if test="${not empty QLRXXXZ}">
			<li><a href="${ctx}/reg/bus/regBusQlr/form?QLRXXXZ=${QLRXXXZ}&YWH=${YWH}&YSDM=${YSDM}&WO=1&QLR=${QLR}&ZL=${ZL}&QLRDH=${QLRDH}&QLRYJ=${QLRYJ}"">权利人信息添加</a></li>
			</c:if>
		</shiro:hasPermission>
	</ul>
	<c:if test="${not empty WO}">
		<br>
		<input id="reLoadQlr" class="btn btn-primary" type="button" onclick="reloadqlr();" value="退出列表" />
		<br>
		<br>
	</c:if>
	<c:if test="${not empty QLRXXXZ}">
		<br>
		<input id="btnSelected" class="btn btn-primary" type="button" onclick="btnSelectedQlr();" value="选择权利人" />
		<br>
		<br>
	</c:if>
	<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>
			</tr>
		</thead>
		<tbody>
			<c:forEach items="${page.list}" var="regBusQlr">
				<tr>
					<td>${regBusQlr.sxh}</td> 
					<td>${bdcdyh}</td> 
					<td>${regBusQlr.qlrmc}</td>
					<td>${fns:getDictLabel(regBusQlr.zjzl, 'reg_bus_zjlx', '')}</td>
					<td>${regBusQlr.zjh}</td>
					<td>${fns:getDictLabel(regBusQlr.qlrlx, 'reg_bus_qlrlx', '')}</td>
					<td>${regBusQlr.qlbl}</td> 
					<td>${fns:getDictLabel(regBusQlr.gyfs, 'reg_bus_gyfs', '')}</td>
					<td>${regBusQlr.gyqk}</td>
				</tr>
			</c:forEach>
		</tbody>
	</table>
</body>
</html>