| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 | 
							- <%@ page language="java" contentType="text/html; charset=UTF-8"
 
- 	pageEncoding="UTF-8"%>
 
- <script type="text/javascript">
 
- 	function zxjxxxview(zxjxid){
 
- 		var path="/xkzzx/addmain?path=11:id="+$('#jyrid').val()+"";
 
- 		location.href=$.app+'/zxjx/view?id='+zxjxid+'&path='+path;
 
- 	}
 
- 	
 
- 	function initzxjxxx(){
 
- 		$.post($.app + "/gkjyr/zxjxxx", {
 
- 			id : $('#jyrid').val(),
 
- 			czid:$('#id').val(),
 
- 			recordStatus:11
 
- 		}, function(data) {
 
- 			if (data) {
 
- 				var str =""
 
- 				for(var i=0;i<data.length;i++){
 
- 					var zxjx = data[i];
 
- 					str+="<tr class='tr_bg'>";
 
- 					if(zxjx.isTrue){
 
- 						str+="<td><input type='checkbox' checked name='zxjxid'  value='"+zxjx.id+"'/></td>";
 
- 					}else{
 
- 						str+="<td><input type='checkbox' name='zxjxid'  value='"+zxjx.id+"'/></td>";
 
- 					}
 
- 					str+="<td>"+zxjx.jxlbmczw+"</td>";
 
- 					str+="<td>"+zxjx.ssjyrzw+"</td>";
 
- 					str+="<td>"+zxjx.xhhgg+"</td>";
 
- 					str+="<td>"+zxjx.jxsl+"</td>";
 
- 					str+="<td>"+zxjx.syqzw+"</td>";
 
- 					str+="<td>";
 
- 					str+="<a class='btn btn-default btn-xs' href='#' onclick=\"zxjxxxview('"+zxjx.id+"')\"> <i class='glyphicon glyphicon-search'></i> 查看</a>";
 
- 					str+="</td>";
 
- 					str+="</tr>";
 
- 				}
 
- 				$('#zxjxxxdiv').empty();
 
- 				$('#zxjxxxdiv').append(str);
 
- 			} else {
 
- 				
 
- 			}
 
- 		}, "json");
 
- 	}
 
- </script>
 
- 	<table class="main_table"  cellpadding="0" cellspacing="0">
 
- 		
 
- 		<tr>
 
- 			<th width="10%"></th>	
 
- 			 <th width="15%">机械类别名称</th>
 
- 	        <th width="15%">港口经营人</th>
 
- 	        <th width="15%">型号或规格</th>
 
- 	        <th width="15%">机械数量</th>
 
- 	        <th width="15%">所有权</th>
 
- 	        <th width="20%">操作</th>
 
- 		</tr>
 
- 		<tbody id="zxjxxxdiv"></tbody>
 
- 	</table>
 
 
  |