0aec6f48aef661f0c143dad40dbbdc3ff4b12e60.svn-base
3.54 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<%@ 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;
}
//点击变更后弹出户信息的变更FORm ;然后再转到 ${ctx}/reg/bus/regBusFdcq2/nextHousePropertyForm?HID="+hid+"&YWH=${YWH}&WO=${WO}&DJLX=${DJLX}&OldYWID="+djxxoldid
function propertyHouseForm(hid, djxxoldid){
//djxxoldid登记信息id
//弹出一个属性变更的权属FORM界面
var iWidth=1200;
var iHeight=600;
var iTop = (window.screen.height - 30 - iHeight) / 2;
var iLeft = (window.screen.width - 10 - iWidth) / 2;
var url = "${ctx}/reg/base/regBaseH/ygbgpropertyform?id="+hid+"&YWH=${YWH}&WO=${WO}&DJLX=${DJLX}&OldYWID="+djxxoldid;
window .open( url, "户信息变更", "width=" + iWidth + ", height=" + iHeight + ",top=" + iTop + ",left=" + iLeft + ",toolbar=no, menubar=no, scrollbars=yes, resizable=no,location=no, status=no,alwaysRaised=yes,depended=yes");
}
function btnPropertyConformClick(){
//直接返回受理申请页面,并且关闭当前
if(window.opener){
window.opener.document.qlrframe.location.reload();
window.opener.document.gjzwframe.location.reload();
window.opener.document.bgforenoticeframe.location.reload();
}
window.close();
}
</script>
</head>
<body>
<ul class="nav nav-tabs">
<li class="active"><a href="">户信息列表</a></li>
</ul>
<sys:message content="${message}"/>
<div class="current_fwinfo">当前已选择户信息列表如下,共:【${hCount}】户</div>
<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:base:regBaseH:edit"><th>操作</th></shiro:hasPermission>
</tr>
</thead>
<tbody>
<c:forEach items="${page.list}" var="regBaseH">
<tr>
<td><a href="#">
${regBaseH.bdcdyh}
</a></td>
<td>
${regBaseH.fwbm}
</td>
<td>
${regBaseH.jgzwmc}
</td>
<td>
${regBaseH.zl}
</td>
<td>
${regBaseH.sjcs}
</td>
<td>
${regBaseH.shbw}
</td>
<td>
${fns:getDictLabel(regBaseH.hxjg, 'reg_bus_hxjg', '')}
</td>
<td>
${fns:getDictLabel(regBaseH.fwxz, 'reg_bus_fwxz', '')}
</td>
<td>
${fns:getDictLabel(regBaseH.fwlx, 'reg_bus_fwlx', '')}
</td>
<td>
${regBaseH.scjzmj}
</td>
<td>
${regBaseH.fttdmj}
</td>
<shiro:hasPermission name="reg:base:regBaseH:edit">
<td>
<!-- 转到改房屋对应的权属FORM进行权属添加和变更已登记信息的生成;到 regBusFdcq2PropertyForm.jsp 这里需要弹出框来实现-->
<a href="javascript:void(0);" onclick="propertyHouseForm('${regBaseH.id}', '${regBaseH.djxxoldid}');">变 更</a>
</td>
</shiro:hasPermission>
</tr>
</c:forEach>
</tbody>
</table>
<div class="pagination">${page}</div>
<input id="btnConform" class="btn btn-primary" style="float:right;" type="button" onClick="btnPropertyConformClick();" value="确 认"/>
</body>
</html>