8e566cf10f5add8417a2e4e5e734c2d2199a9a34.svn-base
1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<%@ 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>