lhsqmain.jsp 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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/gkjylhsq/lhsqmain.js"></script>
  11. <script type="text/javascript">
  12. $(document).ready(function () {
  13. lhsq.main.szd = "${user.szd.id}";
  14. if(!isEmpty(lhsq.main.szd)){
  15. $("#szdid").attr("disabled", "disabled");
  16. }
  17. var jyr = "${jyr}";
  18. if(!isEmpty(jyr)){
  19. lhsq.main.szgk ="${jyr.szgk.id}";
  20. lhsq.main.szgq ="${jyr.szgq.id}";
  21. }
  22. else{
  23. lhsq.main.szgk ="${szgkid}";
  24. lhsq.main.szgq ="${szgqid}";
  25. }
  26. lhsq.main.init();
  27. iFrameHeightIframe('${menuid}');//自适应高度
  28. });
  29. </script>
  30. </head>
  31. <body>
  32. <jsp:include page="../../../showHistory.jsp"></jsp:include>
  33. <div class="box" >
  34. <div class="box-content" >
  35. <form action="${app }/lhsq/main" id="lhsqform" method="post">
  36. <div >
  37. <table class="search_table" cellpadding="0" cellspacing="0">
  38. <tr>
  39. <th width="10%"></th>
  40. <th width="25%"></th>
  41. <th width="10%"></th>
  42. <th width="25%"></th>
  43. </tr>
  44. <tr>
  45. <td class="right">所在地:&nbsp;</td>
  46. <td><span id="szdsel"></span></td>
  47. <td class="right">所在港口:&nbsp;</td>
  48. <td><span id="gksel"></span></td>
  49. <td class="right">所在港区:&nbsp;</td>
  50. <td><span id="gqsel"></span></td>
  51. </tr>
  52. <tr>
  53. <td class="right">
  54. 港口经营人:&nbsp;
  55. </td>
  56. <td>
  57. <input type="text" class="form-control" name="gkjyr" value="${gkjyr }">
  58. </td>
  59. <td class="right">
  60. 法定代表人:&nbsp;
  61. </td>
  62. <td >
  63. <input type="text" class="form-control" name="fddbr" value="${fddbr }">
  64. </td>
  65. <td class="right">
  66. <!-- 申请人地址:&nbsp; -->
  67. </td>
  68. <td >
  69. <%-- <input type="text" class="form-control" name="sqrdz" value="${sqrdz }"> --%>
  70. </td>
  71. </tr>
  72. <tr>
  73. <td class="right" colspan="6">
  74. <a class="btn btn-default btn-sm" href="#" onclick="lhsq.main.search()">
  75. <i class="glyphicon glyphicon-search"></i>
  76. 查询</a>
  77. <a class="btn btn-default btn-sm" href="#" onclick="lhsq.main.add()">
  78. <i class="glyphicon glyphicon-plus"></i>
  79. 新增</a>
  80. </td>
  81. </tr>
  82. </table>
  83. </div>
  84. <!-- 列表 -->
  85. <div style="background-color:#f4f4f4;">
  86. <table class="main_table" cellpadding="0" cellspacing="0">
  87. <tr>
  88. <th width="5%">序号</th>
  89. <th width="25%">港口经营人</th>
  90. <th width="15%">办公地点</th>
  91. <th width="10%">法定代表人</th>
  92. <th width="1%" class="operatetd">操作</th>
  93. <th width="1%" class="operatetd">审核</th>
  94. </tr>
  95. <c:forEach items="${list}" var="lhsq" varStatus="status">
  96. <tr class="tr_bg">
  97. <td>${status.index+1 }</td>
  98. <td>${lhsq.jyrmc }</td>
  99. <td>${lhsq.zcdz }</td>
  100. <td>${lhsq.fddbr }</td>
  101. <td class="operatetd">
  102. <a class="btn btn-default btn-xs" href="#" onclick="lhsq.main.view('${lhsq.id}')" title="查看">
  103. <i class="glyphicon glyphicon-search"></i>
  104. </a>
  105. <c:if test="${lhsq.recordStatus == 1 }">
  106. <a class="btn btn-default btn-xs" href="#" onclick="lhsq.main.edit('${lhsq.id}')" title="修改">
  107. <i class="glyphicon glyphicon-wrench"></i>
  108. </a>
  109. <a class="btn btn-default btn-xs" href="#" onclick="lhsq.main.del('${lhsq.id}')" title="删除">
  110. <i class="glyphicon glyphicon-trash"></i>
  111. </a>
  112. </c:if>
  113. <c:if test="${ lhsq.recordStatus > 1 }">
  114. <a class="btn btn-default btn-xs" href="#"
  115. onclick="hisList('${lhsq.id}','lhsq')" title="流程历史"> <i
  116. class="glyphicon glyphicon-search"></i>
  117. </a>
  118. </c:if>
  119. </td>
  120. <td class="operatetd">
  121. <c:if test="${lhsq.taskState =='Y'}">
  122. <a class="btn btn-default btn-xs" href="#" onclick="lhsq.main.banli('${lhsq.id}')" title="办理">
  123. <i class="glyphicon glyphicon-check"></i>
  124. 办理</a>
  125. </c:if>
  126. <c:if test="${lhsq.taskState =='TH'}">
  127. <a class="btn btn-default btn-xs" href="#" onclick="lhsq.main.back('${lhsq.id}')" title="办理">
  128. <i class="glyphicon glyphicon-check"></i>
  129. </a>
  130. </c:if>
  131. </td>
  132. </tr>
  133. </c:forEach>
  134. </table>
  135. </div>
  136. <!-- 分页 -->
  137. <jsp:include page="../../../pageinfo.jsp"></jsp:include>
  138. </div>
  139. </form>
  140. </div>
  141. </body>
  142. </html>