97cd840645029fa0b0ff1ffa2e16fd52b57b6614.svn-base
3.85 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<%@ 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" >
var selItems = new Array();
$(document).ready(function() {
$("tbody > tr").bind("click",function(){
$("tbody > tr").each(function(i){
$(this).removeClass("trBgcolor");
});
$(this).find('input:radio').prop('checked', true);
$(this).addClass("trBgcolor");
});
//此方法用来解决iframe高度自适应的问题;
$("#djxxframe").load(function(){
$(this).height($(this).contents().find("#contentTable").height() + 240);
});
});
function page(n,s){
$("#pageNo").val(n);
$("#pageSize").val(s);
$("#searchForm").submit();
return false;
}
function isNotNull(val){
if(val != null && val != 'null' && val != undefined && val != 'undefined' && val != ''){
return true ;
}
return false;
}
function DestroySelItems(){
selItems = null;
selItems = new Array();
$("#contentSelectedTable > tbody").html("");
}
function btnNextMerger(){
var trList = $("#contentSelectedTable").find("tr");
if(trList.length<=1){
alert("没有已选择的登记信息!");
return;
}else if(trList.length<=2){
alert("单套房屋不能进行合并!");
return;
}
var ids="";
for (var i=1;i<trList.length;i++) {
var tdArr = trList.eq(i).find("td");
var history = tdArr.eq(0).text();
if(isNotNull(ids)){
ids += ";" + history;
}else{
ids = history;
}
}
//发送Ajax请求来判断选择出来的已登记信息对应的房屋是不是在一幢楼上,不是提示重新选择
$.ajax({
type:"POST",
url:"${ctx}/reg/bus/regBusBdcqzsdjxx/isOneZrzAndOneC",
cache: false,
data:"ids="+ids,
async : false,
success:function(modelmap){
if(modelmap.success != 1){
alert("您选择的不动产登记信息对应的房屋不在一幢楼的同一层上,请重新选择!");
return;
}else if(modelmap.ismer != 1){
alert("您选择的不动产登记信息对应的房屋未在权籍系统进行合并!");
return;
}
else{
//走向户信息添加FORM
var cid = modelmap.CID;
url = "${ctx}/reg/base/regBaseH/mergerlist?CID="+cid+"&YWH=${YWH}&WO=1&YSDM=2001010000&DJLX=${DJLX}&ids="+ids;
window.location = url;
}
}
});
}
</script>
</head>
<body>
<ul class="nav nav-tabs">
<li class="active"><a href="#">选择可变更业务信息</a></li>
</ul>
<input type="hidden" id= "qlr" />
<iframe id="djxxframe" name="djxxframe"
src="${ctx}/reg/bus/regBusBdcqzsdjxx/mergerHouseDjxxChoiceForm?YWH=${YWH}&WO=${WO}&DJLX=${DJLX}"
width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0"
scrolling="no" allowtransparency="yes"></iframe>
<div id="btnGroup" class="control-group">
<input id="btnEmpty" class="btn btn-primary" type="button" onclick="DestroySelItems();" value="清 空"/>
<input id="btnNext" class="btn btn-primary" type="button" onclick="btnNextMerger();" value="下一步"/>
</div>
<div id="targetBaseInfo" class="control-group" style="height: 250px">
<fieldset>
<table id="contentSelectedTable" class="table table-striped table-bordered table-condensed">
<thead>
<tr>
<th style="display:none;">id</th>
<th>业务编号</th>
<th>不动产单元号</th>
<th>不动产权证号</th>
<th>权利人</th>
<th>共有情况</th>
<th>用途</th>
<th>面积</th>
<th>坐落</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</fieldset>
</div>
</body>
</html>