123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>江苏省港口建设与经营管理信息系统</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <%@ include file="../../../common.jsp"%>
- <script type="text/javascript" src="${app }/static/biz/js/gkjygl/gklhxkgl/gkjylhyx/lhyxmain.js"></script>
- <script type="text/javascript">
- $(document).ready(function () {
- iFrameHeightIframe('${menuid}');//自适应高度
- lhyx.main.szd = "${user.szd.id}";
- if(!isEmpty(lhyx.main.szd)){
- $("#szdid").attr("disabled", "disabled");
- }
- var jyr = "${jyr}";
- if(!isEmpty(jyr)){
- lhyx.main.szgk ="${jyr.szgk.id}";
- lhyx.main.szgq ="${jyr.szgq.id}"
- }
-
- lhyx.main.init();
-
- });
- </script>
- </head>
- <body>
- <jsp:include page="../../../showHistory.jsp"></jsp:include>
- <div class="box" >
- <div class="box-content" >
- <form action="${app }/lhyx/main" id="lhyxform" method="post">
- <div >
- <table class="search_table" cellpadding="0" cellspacing="0">
- <tr>
- <th width="10%"></th>
- <th width="25%"></th>
- <th width="10%"></th>
- <th width="25%"></th>
- </tr>
- <tr>
- <td class="right">所在地: </td>
- <td><span id="szdsel"></span></td>
- <td class="right">所在港口: </td>
- <td><span id="gksel"></span></td>
- <td class="right">所在港区: </td>
- <td><span id="gqsel"></span></td>
- </tr>
- <tr>
- <td class="right">
- 港口经营人:
- </td>
- <td>
- <input type="text" class="form-control" name="gkjyr" value="${gkjyr }">
- </td>
- <td class="right">
- 法定代表人:
- </td>
- <td >
-
- <input type="text" class="form-control" name="fddbr" value="${fddbr }">
- </td>
- <td class="right">
- 注册地址:
- </td>
- <td >
- <input type="text" class="form-control" name="bgdd" value="${bgdd }">
- </td>
- </tr>
- <tr>
-
- <td class="right" colspan="6">
- <a class="btn btn-default btn-sm" href="#" onclick="lhyx.main.search()">
- <i class="glyphicon glyphicon-search"></i>
- 查询</a>
-
- <a class="btn btn-default btn-sm" href="#" onclick="lhyx.main.add()">
- <i class="glyphicon glyphicon-plus"></i>
- 新增</a>
-
- </td>
-
- </tr>
- </table>
- </div>
- <!-- 列表 -->
- <div style="background-color:#f4f4f4;">
- <table class="main_table" cellpadding="0" cellspacing="0">
- <tr>
- <th width="5%">序号</th>
- <th width="25%">港口经营人</th>
- <th width="15%">注册地址</th>
- <th width="10%">法定代表</th>
-
- <th width="20%">操作</th>
- <th width="10%">审核</th>
- </tr>
- <c:forEach items="${list}" var="lhyx" varStatus="status">
- <tr class="tr_bg">
- <td>${status.index+1 }</td>
- <td>${lhyx.jyrmc }</td>
- <td>
- ${lhyx.zcdz }
- </td>
- <td>
- ${lhyx.fddbr }
- </td>
- <%-- <td>${lhyx.lxr }</td>
- <td>${lhyx.lxdh }</td> --%>
- <td>
- <a class="btn btn-default btn-xs" href="#" onclick="lhyx.main.view('${lhyx.id}')">
- <i class="glyphicon glyphicon-search"></i>
- 查看</a>
- <c:if test="${lhyx.recordStatus == 1 }">
-
- <a class="btn btn-default btn-xs" href="#" onclick="lhyx.main.edit('${lhyx.id}')">
- <i class="glyphicon glyphicon-wrench"></i>
- 修改</a>
-
- <a class="btn btn-default btn-xs" href="#" onclick="lhyx.main.del('${lhyx.id}')">
- <i class="glyphicon glyphicon-trash"></i>
- 删除</a>
-
- </c:if>
- <c:if test="${ lhyx.recordStatus > 1 }">
- <a class="btn btn-default btn-xs" href="#"
- onclick="hisList('${lhyx.id}','lhyx')"> <i
- class="glyphicon glyphicon-search"></i>流程历史
- </a>
- </c:if>
- </td>
- <td>
- <c:if test="${lhyx.taskState =='Y'}">
- <a class="btn btn-default btn-xs" href="#" onclick="lhyx.main.banli('${lhyx.id}')">
- <i class="glyphicon glyphicon-check"></i>
- 办理</a>
- </c:if>
- <c:if test="${lhsq.taskState =='TH'}">
- <a class="btn btn-default btn-xs" href="#" onclick="lhyx.main.back('${lhyx.id}')">
- <i class="glyphicon glyphicon-check"></i>
- 办理</a>
- </c:if>
- </td>
- </tr>
- </c:forEach>
- </table>
- </div>
- <!-- 分页 -->
- <jsp:include page="../../../pageinfo.jsp"></jsp:include>
-
- </div>
- </form>
- </div>
- </body>
- </html>
|