12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <script type="text/javascript">
- function zxjxxxview(zxjxid){
- var path="/xkzbg/viewmain?path=11:id="+$('#id').val()+"";
- location.href=$.app+'/zxjx/view?id='+zxjxid+'&path='+path;
- }
-
- function initzxjxxx(){
- $.post($.app + "/gkjyr/zxjxxx", {
- id : $('#jyrid').val(),
- czid:$('#id').val(),
- recordStatus:10
- }, function(data) {
- if (data) {
- var str =""
- for(var i=0;i<data.length;i++){
- var zxjx = data[i];
- str+="<tr class='tr_bg'>";
- str+="<td>"+(i+1)+"</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="5%">序号</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>
|