lhyxmain.jsp 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"
  2. pageEncoding="UTF-8"%>
  3. <!DOCTYPE html>
  4. <html lang="en">
  5. <head>
  6. <meta charset="utf-8">
  7. <title>江苏省港口建设与经营管理信息系统</title>
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. <%@ include file="../../../common.jsp"%>
  10. <script type="text/javascript" src="${app }/static/biz/js/gkjygl/gklhxkgl/gkjylhyx/lhyxmain.js"></script>
  11. <script type="text/javascript">
  12. $(document).ready(function () {
  13. iFrameHeightIframe('${menuid}');//自适应高度
  14. lhyx.main.szd = "${user.szd.id}";
  15. if(!isEmpty(lhyx.main.szd)){
  16. $("#szdid").attr("disabled", "disabled");
  17. }
  18. var jyr = "${jyr}";
  19. if(!isEmpty(jyr)){
  20. lhyx.main.szgk ="${jyr.szgk.id}";
  21. lhyx.main.szgq ="${jyr.szgq.id}"
  22. }
  23. else{
  24. lhyx.main.szd = "${szdid}";
  25. lhyx.main.szgk ="${szgkid}";
  26. lhyx.main.szgq ="${szgqid}";
  27. }
  28. lhyx.main.init();
  29. });
  30. </script>
  31. </head>
  32. <body>
  33. <jsp:include page="../../../showHistory.jsp"></jsp:include>
  34. <div class="box" >
  35. <div class="box-content" >
  36. <form action="${app }/lhyx/main" id="lhyxform" method="post">
  37. <div >
  38. <table class="search_table" cellpadding="0" cellspacing="0">
  39. <tr>
  40. <th width="10%"></th>
  41. <th width="25%"></th>
  42. <th width="10%"></th>
  43. <th width="25%"></th>
  44. </tr>
  45. <tr>
  46. <td class="right">所在地:&nbsp;</td>
  47. <td><span id="szdsel"></span></td>
  48. <td class="right">所在港口:&nbsp;</td>
  49. <td><span id="gksel"></span></td>
  50. <td class="right">所在港区:&nbsp;</td>
  51. <td><span id="gqsel"></span></td>
  52. </tr>
  53. <tr>
  54. <td class="right">
  55. 港口经营人:&nbsp;
  56. </td>
  57. <td>
  58. <input type="text" class="form-control" name="gkjyr" value="${gkjyr }">
  59. </td>
  60. <td class="right">
  61. 法定代表人:&nbsp;
  62. </td>
  63. <td >
  64. <input type="text" class="form-control" name="fddbr" value="${fddbr }">
  65. </td>
  66. <td class="right">
  67. 注册地址:&nbsp;
  68. </td>
  69. <td >
  70. <input type="text" class="form-control" name="bgdd" value="${bgdd }">
  71. </td>
  72. </tr>
  73. <tr>
  74. <td class="right" colspan="6">
  75. <authz:hasPermission name="${appName}:lhyx:main">
  76. <a class="btn btn-default btn-sm" href="#" onclick="lhyx.main.search()">
  77. <i class="glyphicon glyphicon-search"></i>
  78. 查询</a>
  79. </authz:hasPermission>
  80. <authz:hasPermission name="${appName}:lhyx:add">
  81. <a class="btn btn-default btn-sm" href="#" onclick="lhyx.main.add()">
  82. <i class="glyphicon glyphicon-plus"></i>
  83. 新增</a>
  84. </authz:hasPermission>
  85. </td>
  86. </tr>
  87. </table>
  88. </div>
  89. <!-- 列表 -->
  90. <div style="background-color:#f4f4f4;">
  91. <table class="main_table" cellpadding="0" cellspacing="0">
  92. <tr>
  93. <th width="5%">序号</th>
  94. <th width="25%">港口经营人</th>
  95. <th width="15%">注册地址</th>
  96. <th width="10%">法定代表</th>
  97. <th width="10%">流程状态</th>
  98. <th width="1%" class="operatetd">操作</th>
  99. </tr>
  100. <c:forEach items="${list}" var="lhyx" varStatus="status">
  101. <tr class="tr_bg">
  102. <td>${status.index+1 }</td>
  103. <td>${lhyx.jyrmc }</td>
  104. <td>
  105. ${lhyx.zcdz }
  106. </td>
  107. <td>
  108. ${lhyx.fddbr }
  109. </td>
  110. <td>${lhyx.currentname }</td>
  111. <%-- <td>${lhyx.lxr }</td>
  112. <td>${lhyx.lxdh }</td> --%>
  113. <td class="operatetd">
  114. <authz:hasPermission name="${appName}:lhyx:main">
  115. <a class="btn btn-default btn-xs" href="#" onclick="lhyx.main.view('${lhyx.id}')" title="查看">
  116. <i class="glyphicon glyphicon-search"></i>
  117. </a>
  118. </authz:hasPermission>
  119. <c:if test="${lhyx.recordStatus == 1 && lhyx.sftb == 'N' }">
  120. <c:if test="${ssFlag == 1 }">
  121. <%-- <a class="btn btn-default btn-xs" href="#" onclick="lhyx.main.submit('${lhyx.id}')" title="同步">
  122. <i class="glyphicon glyphicon-share"></i>
  123. </a> --%>
  124. </c:if>
  125. <authz:hasPermission name="${appName}:lhyx:edit">
  126. <a class="btn btn-default btn-xs" href="#" onclick="lhyx.main.edit('${lhyx.id}')" title="编辑">
  127. <i class="glyphicon glyphicon-pencil"></i>
  128. </a>
  129. </authz:hasPermission>
  130. <c:if test="${ssFlag == 1 }">
  131. <authz:hasPermission name="${appName}:lhyx:delete">
  132. <a class="btn btn-default btn-xs" href="#" onclick="lhyx.main.del('${lhyx.id}')" title="删除">
  133. <i class="glyphicon glyphicon-trash"></i>
  134. </a>
  135. </authz:hasPermission>
  136. </c:if>
  137. </c:if>
  138. <c:if test="${ lhyx.recordStatus > 1 && ssFlag ==0}">
  139. <a class="btn btn-default btn-xs" href="#"
  140. onclick="hisList('${lhyx.id}','lhyx')" title="流程历史"> <i
  141. class="glyphicon glyphicon-retweet"></i>
  142. </a>
  143. </c:if>
  144. <c:if test="${lhyx.taskState =='Y'}">
  145. <a class="btn btn-default btn-xs" href="#" onclick="lhyx.main.banli('${lhyx.id}')" title="办理">
  146. <i class="glyphicon glyphicon-check"></i>
  147. </a>
  148. </c:if>
  149. <c:if test="${lhyx.taskState =='TH'}">
  150. <a class="btn btn-default btn-xs" href="#" onclick="lhyx.main.back('${lhyx.id}')" title="办理">
  151. <i class="glyphicon glyphicon-check"></i>
  152. </a>
  153. </c:if>
  154. <c:if test="${lhyx.opflag == 1 && ssFlag ==0}">
  155. <a class="btn btn-default btn-xs" href="#"
  156. onclick="parent.main.menuClick('xkzxx','许可证信息','/xkzxx/editLhxkz?id=${lhyx.id}&status=133')" title="发证"> <i
  157. class="glyphicon glyphicon-search"></i>
  158. </a>
  159. </c:if>
  160. </td>
  161. </tr>
  162. </c:forEach>
  163. </table>
  164. </div>
  165. <!-- 分页 -->
  166. <jsp:include page="../../../pageinfo.jsp"></jsp:include>
  167. </form>
  168. </div>
  169. </div>
  170. </body>
  171. </html>