| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 | 
							- <%@ page language="java" contentType="text/html; charset=UTF-8"
 
-     pageEncoding="UTF-8"%>
 
- <script type="text/javascript">
 
- 	function ckxxview(ckid){
 
- 		var path="/xkzsq/viewmain?path=6:id="+$('#id').val()+":jyrid="+$('#jyrid').val()+"";
 
- 		location.href=$.app+'/ck/view?id='+ckid+'&path='+path;
 
- 	}
 
- 	function initckxx(){
 
- 		$.post($.app + "/gkjyr/ckxx", {
 
- 			id : $('#jyrid').val(),
 
- 			czid:$('#id').val()
 
- 		}, function(data) {
 
- 			if (data) {
 
- 				var str =""
 
- 				for(var i=0;i<data.length;i++){
 
- 					var ck = data[i];
 
- 					str+="<tr class='tr_bg'>";
 
- 					str+="<td>"+(i+1)+"</td>";
 
- 					str+="<td>"+ck.ckmc+"</td>";
 
- 					str+="<td>"+ck.ssjyrzw+"</td>";
 
- 					str+="<td>"+ck.ssmtzw+"</td>";
 
- 					str+="<td>"+ck.szgkzw+"</td>";
 
- 					str+="<td>"+ck.szgqzw+"</td>";
 
- 					str+="<td>"+ck.wxpckzw+"</td>";
 
- 					str+="<td>";
 
- 					str+="<a class='btn btn-default btn-xs' href='#' onclick=\"ckxxview('"+ck.id+"')\"> <i class='glyphicon glyphicon-search'></i> 查看</a>";
 
- 					str+="</td>";
 
- 					str+="</tr>";
 
- 				}
 
- 				$('#ckxxdiv').empty();
 
- 				$('#ckxxdiv').append(str);
 
- 			} 
 
- 		}, "json");
 
- 	}
 
- </script>
 
- 	<table class="main_table"  cellpadding="0" cellspacing="0">
 
- 		<tr>
 
- 			<th width="5%">序号</th>
 
- 	    	<th width="10%">仓库名称</th>
 
-        		<th width="15%">港口经营人</th>
 
- 			<th width="15%">前沿码头名称</th>
 
- 			<th width="15%">所在港口</th>
 
- 			<th width="10%">所在港区</th>
 
-        		<th width="10%">是否危险品仓库</th>
 
- 	        <th width="20%">操作</th>
 
- 		</tr>
 
- 		<tbody id="ckxxdiv"></tbody>
 
- 	</table>
 
 
  |