9a6ed477dc7aff11d6556a7fdb032d386c69c342.svn-base
3.86 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
131
132
133
134
135
136
137
138
139
<%@ 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(){
$("#contentSelectedTable > tbody").remove();
//此方法用来解决iframe高度自适应的问题;
$("#djxxframe").load(function(){
$(this).height($(this).contents().find("#srcBaseInfo").height() + 180);
});
});
var selItems = new Array();
$(document).ready(function() {});
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;
}
var zts= 0;
function addRownum(addnum){
zts = zts + addnum;
var ztsinfo ="一共选择房屋:("+zts+")套间";
$("#yxfws").val(ztsinfo);
}
function DestroySelItems(){
selItems = null;
selItems = new Array();
zts= 0;
$("#yxfws").val('');
$("#contentSelectedTable > tbody").remove();
}
function btnNext(){
var trList = $("#contentSelectedTable").find("tr");
if(trList.length<=1){
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;
}
}
if(${DJLX} == 214 || ${DJLX} == 215){
$("#ids").val(ids);
document.inputForms.action = "${ctx}/reg/bus/regBusDyaq/xfnextform?YWH=${YWH}&WO=1&YSDM=2002030100&DJLX=${DJLX}&IsLogout=${IsLogout}";
}else{
alert("抵押类型不正确,请重新操作!");
return;
}
document.inputForms.submit();
}
</script>
</head>
<body>
<form id="inputForms" name="inputForms" action="#" method="post" class="form-horizontal">
<div class="form-horizontal">
<input type="hidden" name="ids" id="ids" value="">
<input type="hidden" id= "qlr" />
<iframe id="djxxframe" name="djxxframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/formalMortgageGuidesc?YWH=${YWH}&WO=1&DJLX=${DJLX}&IsHouse=${IsHouse}&IsLogout=${IsLogout}&ifm=${1}"
width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="no" allowtransparency="yes"></iframe>
<input id="btnEmpty" class="btn btn-primary" type="button" onclick="DestroySelItems();" value="清空"/>
<input id="btnunSelecnexttAll" class="btn btn-primary" type="button" value="下一步" onclick="javascript:btnNext();"/>
<input type="text" width="10%" id="yxfws" readonly="readonly">
<div id="targetBaseInfo" class="control-group" style="height: 250px">
<fieldset>
<table id="contentSelectedTable" class="table table-striped table-bordered table-condensed">
<thead>
<tr>
<c:if test="${empty WO}">
<th>id</th>
</c:if>
<th>业务号</th>
<th>不动产单元号</th>
<th>不动产证号</th>
<th>权利人</th>
<th>共有情况</th>
<th>用途</th>
<%-- <th>套数</th> --%>
</tr>
</thead>
<tbody>
<tr>
<td>
${regBusBdcqzsdjxx.id}
</td>
<td>
${regBusBdcqzsdjxx.ywh}
</td>
<td>
${regBusBdcqzsdjxx.bdcdyh}
</td>
<td>
${regBusBdcqzsdjxx.bdcqzh}
</td>
<td>
${regBusBdcqzsdjxx.qlrmc}
</td>
<td>
${regBusBdcqzsdjxx.gyqk}
</td>
<td>
${regBusBdcqzsdjxx.yt}
</td>
<%-- <td>
${ts}
</td> --%>
</tr>
</tbody>
</table>
</fieldset>
</div>
</div>
</form>
</body>
</html>