357badb2978c5ad6b98cb15ea4a0242b91d20490.svn-base 4.22 KB
<%@ 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高度自适应的问题; 
			    $("#searchForm").load(function(){         
		        $(this).height($(this).contents().find("#srcBaseInfo").height() + 210);  
		    });
		});
		var selItems = new Array();
		$(document).ready(function() {
		});
		function page(n,s){
			$("#pageNo").val(n);
			$("#pageSize").val(s);
			$("#searchForm").submit();
        	return false;
        }
		
		function DestroySelItems(){
			selItems = null;
			selItems = new Array();
			$("#contentSelectedTable > tbody").html("");
		}
		
		function isNotNull(val){
		     if(val != null && val != 'null' && val != undefined && val != 'undefined' && val != ''){
		         return true ;
		     }
		     return false;
		}
		
		function hzbzSave(){
			var trList = $("#contentSelectedTable").find("tr");
			if(trList.length<=1){
				alert("没有已选择的房屋信息!");
				return;
			}
			var djlx = "${djlx}";
			var bdcqzh = "${bdcqzh}";
			var newywh = "${newywh}";
			var flag = "${flag}";
			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({ 
				type:"POST", 
				url:"${ctx}/reg/bus/regBusBdcqzsdjxx/IsTransactionhzbz", 
				cache: false, 
				data:"ids="+ids+"&YWH="+newywh+"&flag="+flag,
			    async : false,  
				success:function(modelmap){
					var successbj = modelmap.success;
					if(modelmap.success != 1){
						alert(modelmap.msg);
						return;
					}else{
						//点击之后按钮置灰
						document.getElementById("choiceReged").disabled="disabled";
						document.getElementById("btnCancel").disabled="disabled";
						document.getElementById("btnEmpty").disabled="disabled";
						var url =  "${ctx}/reg/bus/regBusBdcqzsdjxx/fwbfsave?newywh="+newywh+"&bdcqzh="+bdcqzh+"&djlx="+djlx+"&ids="+ids;
						window.location = url;
					} 
				}
			});
			
 
		}
		
	</script>
</head>
<body>
	<iframe id="searchForm" name="searchForm" src="${ctx}/reg/bus/regBusBdcqzsdjxx/fwhzbzList?islogout=0&FormalMortgage=1&oldywh=${oldywh}&bdcqzh=${bdcqzh}&newywh=${newywh}&DJLX=${djlx}&flagSplit=${flagSplit}&ifmSplit=${1}"
	 width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="no" allowtransparency="yes"></iframe>
	<div id="btnGroup" class="control-group">
		&nbsp;&nbsp;&nbsp;
		<input id="btnCancel" class="btn btn-primary" type="button" value="返回" onclick="history.go(-1)"/>
		&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
		&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
		<input id="btnEmpty" class="btn btn-primary"  type="button" onclick="DestroySelItems();" value="清空"/>
		&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
		<input id="choiceReged" class="btn btn-primary" type="button" onclick="hzbzSave();" 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>
						<c:if test="${not empty WO}">
							<th>id</th>
						</c:if>
						<th>业务号</th>
						<th>不动产单元号</th>
						<th>不动产证号</th>
						<th>权利人</th>
						<th>共有情况</th>
						<th>用途</th>
					</tr>
				</thead>
				<tbody>
					<tr>
						<c:if test="${not empty WO}">
						<td>
							${regBusBdcqzsdjxx.id}
						</td>
						</c:if>
						<td>
							${regBusBdcqzsdjxx.ywh}
						</td>
						<td>
							${regBusBdcqzsdjxx.bdcdyh}
						</td>
						<td>
							${regBusBdcqzsdjxx.bdcqzh}
						</td>
						<td>
							${regBusBdcqzsdjxx.qlrmc}
						</td>
						<td>
							${regBusBdcqzsdjxx.gyqk}
						</td>
						<td>
							${regBusBdcqzsdjxx.yt}
						</td>
					</tr>
				</tbody>
			</table>
		</fieldset>
	</div>
</body>
</html>