Blame view

.svn/pristine/1c/1cbe343f332a055829112615aff6ffc727bf0a51.svn-base 7.87 KB
李希虎 committed
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 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
<%@ 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 src="${ctxStatic}/gis/js/init.js" type="text/javascript"></script>
    <script src="${ctxStatic}/gis/lib/OpenLayers.js" type="text/javascript"></script>
    <script src="${ctxStatic}/gis/lib/zdclient.js" type="text/javascript"></script>
    <script src="${ctxStatic}/gis/lib/jquery.orbit-1.2.3.js" type="text/javascript"></script>    
    <script src="${ctxStatic}/gis/js/global.js" type="text/javascript"></script>
    <script src="${ctxStatic}/gis/js/config.js" type="text/javascript"></script>
	 <link href="${ctxStatic}/gis/lib/jqueryEasyui/easyui.css" rel="stylesheet" type="text/css" />
    <link href="${ctxStatic}/gis/lib/jqueryEasyui/icon.css" rel="stylesheet" type="text/css" />
    <script src="${ctxStatic}/gis/lib/jqueryEasyui/jquery.easyui.min.js" type="text/javascript"></script>
	<script type="text/javascript">
	
		$(document).ready(function() {
			
		});
		function page(n,s){
			$("#pageNo").val(n);
			$("#pageSize").val(s);
			$("#searchForm").submit();
        	return false;
        }
		 function selectTuCeng(ListTucengNO)
	        {
	        	var tucengValue="";
	        	switch(ListTucengNO)
	        	{
	        	 case "A":
	        		  tucengValue=actualSvrcfg.SYQZDGDBP;
	        		  break;
	        	  case "B":
	        		  tucengValue=actualSvrcfg.SHYQZD_DB;
	        		  break;
	        	  case "S":
	        		  tucengValue=actualSvrcfg.SHYQZD_DS;
	        		  break;
	        	  case "X":
	        		  tucengValue=actualSvrcfg.SHYQZD_DX;
	        		  break;
	        	  case "C":
	        		  tucengValue=actualSvrcfg.ZJDGDBP;
	        		  break;
	        	  case "D":
	        		  tucengValue=actualSvrcfg.CBJYQZD_GD;
	        		  break;
	        	  case "E":
	        		  tucengValue=actualSvrcfg.CBJYQZD_LD;
	        		  break;
	        	  case "F":
	        		  tucengValue=actualSvrcfg.CBJYQZD_CD;
	        		  break;
	        	  case "I":
	        		  break;
	        	  case "J":
	        		  break;
	        	  default:break;
	        	}
	        	return tucengValue;
	        }
			var TempID='';
			 var TempTuceng = '';
		function deleteNf(id,bdcdyh,tzm)
	    {
			var success = '0';
	    	if(confirm('确认要删除该入库信息吗?')){
				$.ajax({ 
					type:"POST", 
					url:"${ctx}/reg/nf/regBusNf/isdelete", 
					cache: false,
					data:"id="+id,
				    async : false,
					success:function(modelmap){
						var yw = modelmap.yw;
						var fw = modelmap.fw;
						if(yw=='1'){
							alert("入库数据已进行登记,无法删除!");
							return;
						}
						if(fw=='1'){
							alert("请先删除楼栋信息所有信息,再进行此删除操作");
							return;
						}
						if(yw != '1' && fw !='1'){
							success = '1';
						}
					}
				});
			 if(success=='1')	{
  				var queryStruct=new Zondy.Service.QueryFeatureStruct();
  				queryStruct.IncludeGeometry=true;
  				var temptuceng=selectTuCeng(tzm);
  				TempID=id;
                TempTuceng = temptuceng;
  				var str="BDCDYH='"+bdcdyh +"'";
  				var queryParam=new Zondy.Service.QueryByLayerParameter(TempTuceng,{ 
  	                   // geometry: line,
  	                   resultFormat: "json",
  	                   struct:queryStruct,
  	                   where :  str
  	                   });
  				queryParam.recordNumber=1000;
  				var queryService=new Zondy.Service.QueryLayerFeature(queryParam,
  						{
  					ip: actualSvrcfg.ip,        //IP地址
  					port: actualSvrcfg.port ,   //端口号
  					requestType:"POST"
  					});
  				queryService.query(queryquerydataSuccess);
			 }
			}
	    }
	    function queryquerydataSuccess(data)
		{
			 var chaxunvalue=data;
			 if(chaxunvalue.TotalCount>0)
			 {
				 var editDocFeature = new Zondy.Service.EditLayerFeature(TempTuceng, { ip: actualSvrcfg.ip,  port: actualSvrcfg.port });			   
				 editDocFeature.deletes(chaxunvalue.SFEleArray[0].FID, deleteonSuccess);			 
			 }else{
				  url = "${ctx}/reg/nf/regBusNf/delete?id="+TempID;
	         	window.location.href=url;
			 }
			
			 
		}
	    function deleteonSuccess(data)
		{ 
			if (data == true) {
	         alert("已删除!");
	            url = "${ctx}/reg/nf/regBusNf/delete?id="+TempID;
	         	window.location.href=url;
	          }
	        else {
	         alert("删除失败,请检查参数是否填写完整!");
	        }		 
		}
		
	</script>
</head>
<body>
	<ul class="nav nav-tabs">
		<li class="active"><a href="${ctx}/reg/bus/regBusBdcqzsdjxx/">农房数据信息列表</a></li>
		
	</ul>
	<form:form id="searchForm" modelAttribute="regBusBdcqzsdjxx" action="${ctx}/reg/nf/regBusNf/list" 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}"/>
		<ul class="ul-form">
			
			
			<li><label>宗地代码:</label>
				<form:input path="zddm" htmlEscape="false" maxlength="19" class="input-medium"/>
			</li>
			<li><label>坐落:</label>
				<form:input path="zl" htmlEscape="false" class="input-large"/>
			</li>
			<li class="btns"><input id="btnSubmit" class="btn btn-primary" type="submit" value="查询"/></li>
			<li class="clearfix"></li>
		</ul>
	</form:form>
	<sys:message content="${message}"/>
	<c:if test="${not empty WO}">
		<br>
		<input id="choiceReged" class="btn btn-primary" type="button" onclick="choiceOneRegedinfo();" value="选择已登记信息"/>
		<br><br>
	</c:if>
	<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>
				<th>使用期限</th>
				<!-- 
				<th>权利其他状况</th>
				<th>附记</th>
				<th>抵押登记信息</th>
				<th>解除抵押登记信息</th>
				<th>查封情况</th>
				<th>解除查封</th>
				<th>更新时间</th>
				<th>备注信息</th>
				
				 -->
				<th>操作</th>
			</tr>
		</thead>
		<tbody>
		<c:forEach items="${page.list}" var="regBusBdcqzsdjxx">
			<tr>
				
				<td><a href="${ctx}/reg/bus/regBusBdcqzsdjxx/form?id=${regBusBdcqzsdjxx.id}&VIEWS=1">
					${regBusBdcqzsdjxx.ywh}
					</a>
				</td>
				<%--
				<td>
					${regBusBdcqzsdjxx.bdcdyh}
				</td>
				--%>
				<td>
					${regBusBdcqzsdjxx.zddm}
				</td>
				
				<%--
				<td>
					${regBusBdcqzsdjxx.bdcqzbh}
				</td>
				<td>
					${regBusBdcqzsdjxx.dbsj}
				</td>
				 --%>
				<td>
					${regBusBdcqzsdjxx.qlrmc}
				</td>
				<td>
					${regBusBdcqzsdjxx.gyqk}
				</td>
				<td>
					${fns:getDictLabel(regBusBdcqzsdjxx.qllx, 'reg_bus_qllx', '')}
				</td>
				<td>
					${regBusBdcqzsdjxx.qlxz}
				</td>
				<td>
					${regBusBdcqzsdjxx.yt}
				</td>
				<td>
					${regBusBdcqzsdjxx.mj}
				</td>
				<td>
					${regBusBdcqzsdjxx.syqx}
				</td>
				<%--
				<td>
					${regBusBdcqzsdjxx.qlqtzk}
				</td>
				<td>
					${regBusBdcqzsdjxx.fj}
				</td>
				<td>
					${regBusBdcqzsdjxx.dydjxx}
				</td>
				<td>
					${regBusBdcqzsdjxx.jcdydjxx}
				</td>
				<td>
					${regBusBdcqzsdjxx.cfqk}
				</td>
				<td>
					${regBusBdcqzsdjxx.jccf}
				</td>
				<td>
					<fmt:formatDate value="${regBusBdcqzsdjxx.updateDate}" pattern="yyyy-MM-dd HH:mm:ss"/>
				</td>
				
				<td>
					${regBusBdcqzsdjxx.remarks}
				</td>
				 --%>
				  <td>
    				<!--<a href="${ctx}/reg/bus/regBusBdcqzsdjxx/form?id=${regBusBdcqzsdjxx.id}">修改</a>-->
					<a href="#" onclick="deleteNf('${regBusBdcqzsdjxx.id}','${regBusBdcqzsdjxx.bdcdyh}','C')">删除</a>
				</td>
			</tr>
		</c:forEach>
		</tbody>
	</table>
	<div class="pagination">${page}</div>
</body>
</html>