8e566cf10f5add8417a2e4e5e734c2d2199a9a34.svn-base 1.02 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">
	function page(n, s) {
		$("#pageNo").val(n);
		$("#pageSize").val(s);
		$("#searchForm").submit();
		return false;
	}
</script>
</head>
<body>
	<fieldset>
	<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>
			</tr>
		</thead>
		<tbody>
			<c:forEach items="${page.list}" var="regBusQlr">
				<tr>
					<td>${regBusQlr.sxh}</td> 
					<td>${regBusQlr.qlrmc}</td>
					<td>${regBusQlr.zjh}</td> 
					<td>${fns:getDictLabel(regBusQlr.qlrlx, 'reg_bus_qlrlx', '')}</td>
					<td>${fns:getDictLabel(regBusQlr.gyfs, 'reg_bus_gyfs', '')}</td>
				</tr>
			</c:forEach>
		</tbody>
	</table>
	</fieldset>
</body>
</html>