regBusQlrxxForm.jsp
2.12 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<%@ 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>