zydjfwDialog.jsp 4.88 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">
		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");
			});
		});
		
		function page(n,s){
			$("#pageNo").val(n);
			$("#pageSize").val(s);
			$("#searchForm").submit();
        	return false;
        }

		function winBackZdjbxx() 
		{
			var checkedCount = $("input[type='radio']:checked").length;
			if(checkedCount == 0){
				alert("必须选择一条测绘信息!");
				return;
			}
			//选中一行后,获取信息相关值 
			var idvalue = $("input[type='radio']:checked").val();
			//检查当前选中的不动产 信息有没有在办理其它业务  有的话给提示
			var successbj = "";
			$.ajax({ 
				type:"POST", 
				url:"${ctx}/ycsl/ycslJbxx/isTransaction", 
				cache: false, 
				data:"id="+idvalue,
			    async : false,  
				success:function(modelmap){
					successbj = modelmap.success;
					if(modelmap.success != 1){
						alert(modelmap.msg);
						$("#btnChose").attr("disabled", false);
						return;
					}
				}
			});
			if(successbj == 1){
			if(window.opener) { 
	        	window.opener.selectjbxx(idvalue.trim());
	        	window.close();
		    }
			}
		}
		
	</script>
</head>
<body>
<input type="hidden" id= "qlr" />
	<ul class="nav nav-tabs">
		<li class="active"><a href="#">选择可转移房屋信息</a></li>									   
	</ul>
	<form:form id="searchForm"  modelAttribute="regBusBdcqzsdjxx"  action="${ctx}/ycsl/ycslJbxx/zydjGuide?IsHouse=1"  method="post"  class="breadcrumb form-search">
		<input id="pageNo" name="pageNo" type="hidden" value="${page.pageNo}"/>
		<input id="pageSize" name="pageSize" type="hidden" value="${page.pageSize}"/>
		<sys:tableSort id="orderBy" name="orderBy" value="${page.orderBy}" callback="page();"/>
		<ul class="ul-form">
			<li><label>不动产证号</label>
				<form:input path="bdcqzh" htmlEscape="false" maxlength="100" class="input-medium"/>
			</li>
			<li><label>权利人</label>
				<form:input path="qlrmc" htmlEscape="false" maxlength="100" class="input-medium"/>
			</li>
			<li><label>不动产单元号</label>
				<form:input path="bdcdyh" htmlEscape="false" maxlength="30" class="input-medium"/>
			</li>
			<li><label>类型</label>
				<form:select path="djlx"  class="input-medium " >
					<form:option value="207"  label="所有权转移"/>
					<form:option value="806"  label="已预告登记"/>
				</form:select>
			</li>
			<li><label>坐落</label>
				<form:input path="zl" htmlEscape="false" maxlength="50" class="input-medium"/>
			</li>
			<li class="btns"><input id="btnSubmit" class="btn btn-primary" type="submit" value="查询"/></li>
			<li class="clearfix"></li>
		</ul>
	</form:form>
	<div class="zxdiv"><label><span class="tipinfo">请点击信息选择按钮,只能选择一个</span></label>
		<input id="btnChose" class="btn btn-primary" type="button" onclick="javascript:winBackZdjbxx();" value="信息选择"/>
	</div>
	<sys:message content="${message}"/>

	<div id="srcBaseInfo"  class="control-group" >
			<fieldset>
					<table id="contentTable"  class="table table-bordered table-condensed" >
						<thead>
							<tr>
								
									<th>选择</th>
								
								<th class="sort-column ywh">业务编号</th>
								<th>不动产单元号</th>
								<th class="sort-column bdcqzh">不动产证号</th>
								<th class="sort-column qlrmc">权利人</th>
								<th>共有情况</th>
								<th>坐落</th>
								<th>用途</th>
								<th class="sort-column mj">面积</th>
								<th>登记类型</th>
							</tr>
						</thead>
						<tbody>
						<c:forEach items="${page.list}" var="regBusBdcqzsdjxx">
							<tr>
								
							<td><input type="radio" name="radio_Bdcqzsdjxx"  id="${regBusBdcqzsdjxx.id}"
                             value="${regBusBdcqzsdjxx.id}"/></td>
								
								<td>
									<a href="#">
										${regBusBdcqzsdjxx.ywh}
									</a>
								</td>
								<td>
									${regBusBdcqzsdjxx.bdcdyh}
								</td>
								<td>
									${regBusBdcqzsdjxx.bdcqzh}
								</td>
								<td>
									${regBusBdcqzsdjxx.qlrmc}
								</td>
								<td>
									${regBusBdcqzsdjxx.gyqk}
								</td>
								<td>
									${regBusBdcqzsdjxx.zl}
								</td>
								<td>
									${regBusBdcqzsdjxx.yt}
								</td>
								<td>
									${regBusBdcqzsdjxx.mj}
								</td>
								<td>
								${fns:getDictLabel(regBusBdcqzsdjxx.djlx, 'reg_bus_djxl', '')}
								</td>
							</tr>
						</c:forEach>
						</tbody>
					</table>
					<div class="pagination">${page}</div>
			</fieldset>
	</div>
	
	
	
	
</body>
</html>