jdtxxxmain.jsp 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="utf-8">
  6. <title>江苏省港口建设与经营管理信息系统</title>
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <%@ include file="../../common.jsp"%>
  9. <script type="text/javascript" src="${app }/static/biz/js/ggfwxxgl/jdtxxx/jdtxxxmain.js"></script>
  10. <script type="text/javascript">
  11. $(document).ready(function () {
  12. jdtxxx.main.init();
  13. initszdSelect('szdsel','${szd}','showgk','80%');
  14. initgkSelect('szgksel','${szgk}','${szd}','showgq','80%');
  15. initgqSelect('szgqsel','${szgq}','${szd}','${szgk}',null,'80%');
  16. iFrameHeightIframe('${menuid}');//自适应高度
  17. });
  18. function showgk(){
  19. initgkSelect('szgksel','${szgk}',$('.szdselectpicker').val(),'showgq','80%');
  20. showgq();
  21. }
  22. function showgq(){
  23. initgqSelect('szgqsel','',$('.szdselectpicker').val(),$('.gkselectpicker').val(),null,'80%');
  24. }
  25. </script>
  26. </head>
  27. <body>
  28. <div class="box" >
  29. <div class="box-content" >
  30. <form action="${app }/jdtxxx/main" id="jdtxxxform" method="post">
  31. <table class="search_table" cellpadding="0" cellspacing="0">
  32. <tr>
  33. <th width="12%"></th>
  34. <th width="22%"></th>
  35. <th width="11%"></th>
  36. <th width="22%"></th>
  37. <th width="11%"></th>
  38. <th width="22%"></th>
  39. </tr>
  40. <tr>
  41. <td class="right">
  42. 所在地:&nbsp;
  43. </td>
  44. <td>
  45. <span id="szdsel">
  46. </span>
  47. </td>
  48. <td class="right">
  49. 所在港口:&nbsp;
  50. </td>
  51. <td>
  52. <span id="szgksel">
  53. </span>
  54. </td>
  55. <td class="right">
  56. 所在港区:&nbsp;
  57. </td>
  58. <td>
  59. <span id="szgqsel">
  60. </span>
  61. </td>
  62. </tr>
  63. <tr>
  64. <td class="right" >
  65. 港口经营人:&nbsp;
  66. </td>
  67. <td>
  68. <input type="text" style="width: 80%;" class="form-control" name="ssjyr" value="${ssjyr }">
  69. </td>
  70. <td></td>
  71. <td></td>
  72. <td></td>
  73. <td class="right">
  74. <a class="btn btn-default btn-sm" href="#" onclick="jdtxxx.main.search()">
  75. <i class="glyphicon glyphicon-search"></i>
  76. 查询</a>
  77. <a class="btn btn-default btn-sm" href="#" onclick="jdtxxx.main.add()">
  78. <i class="glyphicon glyphicon-plus"></i>
  79. 新增</a>
  80. </td>
  81. </tr>
  82. </table>
  83. </form>
  84. </div>
  85. <!-- 列表 -->
  86. <div style="background-color:#f4f4f4;">
  87. <table class="main_table" cellpadding="0" cellspacing="0">
  88. <tr>
  89. <th width="5%">序号</th>
  90. <th width="20%">被督查单位</th>
  91. <th width="10%">所在港口</th>
  92. <th width="15%">所在港区</th>
  93. <th width="10%">整改期限</th>
  94. <th width="10%">流程状态</th>
  95. <th width="1%" class="operatetd">操作</th>
  96. </tr>
  97. <c:forEach items="${list}" var="jdtxxx" varStatus="status">
  98. <tr class="tr_bg">
  99. <td>${status.index+1 }</td>
  100. <td>${jdtxxx.gkjyrmc }</td>
  101. <td>${jdtxxx.szgkmc }</td>
  102. <td>${jdtxxx.szgqmc}</td>
  103. <td>${fn:substring(jdtxxx.zgqx,0,10)}</td>
  104. <td>
  105. ${jdtxxx.currentname }
  106. </td>
  107. <td class="operatetd">
  108. <a class="btn btn-default btn-xs" href="#" onclick="jdtxxx.main.view('${jdtxxx.id}')" title="办理">
  109. <i class="glyphicon glyphicon-search"></i>
  110. </a>
  111. <c:if test="${jdtxxx.recordStatus == 1 && jdtxxx.sftb == 'N'}">
  112. <a class="btn btn-default btn-xs" href="#" onclick="jdtxxx.main.edit('${jdtxxx.id}')" title="编辑">
  113. <i class="glyphicon glyphicon-pencil"></i>
  114. </a>
  115. <a class="btn btn-default btn-xs" href="#" onclick="jdtxxx.main.del('${jdtxxx.id}')" title="删除">
  116. <i class="glyphicon glyphicon-trash"></i>
  117. </a>
  118. </c:if>
  119. <c:if test="${ jdtxxx.recordStatus > 1 }">
  120. <a class="btn btn-default btn-xs" href="#"
  121. onclick="hisList('${jdtxxx.id}','jdtxxx')" title="流程历史"> <i
  122. class="glyphicon glyphicon-retweet"></i>
  123. </a>
  124. </c:if>
  125. <c:if test="${jdtxxx.taskState =='Y'}">
  126. <a class="btn btn-default btn-xs" href="#" onclick="jdtxxx.main.banli('${jdtxxx.id}')" title="办理">
  127. <i class="glyphicon glyphicon-check"></i>
  128. </a>
  129. </c:if>
  130. <c:if test="${xkzns.taskState =='TH'}">
  131. <a class="btn btn-default btn-xs" href="#" onclick="jdtxxx.main.back('${jdtxxx.id}')" title="办理">
  132. <i class="glyphicon glyphicon-check"></i>
  133. </a>
  134. </c:if>
  135. </td>
  136. </tr>
  137. </c:forEach>
  138. </table>
  139. </div>
  140. <!-- 分页 -->
  141. <jsp:include page="../../pageinfo.jsp"></jsp:include>
  142. </div>
  143. <jsp:include page="../../showHistory.jsp"></jsp:include>
  144. </body>
  145. </html>