hxglview.jsp 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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/ggfwxxgl/hxgl/hxgldetail.js"></script>
  11. <script type="text/javascript">
  12. $(document).ready(function () {
  13. hxgl.detail.init();
  14. });
  15. </script>
  16. <style type="text/css">
  17. .apply2 th {
  18. width: 18%;
  19. height: 35px;
  20. font-weight: normal;
  21. border-bottom: 1px solid #dadbda;
  22. color: #185f8a;
  23. background: #e6eff9;
  24. font-size: 14px;
  25. text-align: center;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <jsp:include page="../../jyrselect.jsp"></jsp:include>
  31. <div class="box" >
  32. <div class="box-content" >
  33. <div class="apply_fill">
  34. <form id="addform" method="post" enctype="multipart/form-data">
  35. <input type="hidden" id="rq" value="${month }">
  36. <table class="apply" cellpadding="0" cellspacing="0">
  37. <tr>
  38. <th>航线名称:&nbsp;</th>
  39. <td>
  40. ${record.hxmc }
  41. </td>
  42. <th>航线类型:&nbsp;</th>
  43. <td >
  44. ${record.hxlxzw }
  45. </td>
  46. </tr>
  47. <tr>
  48. <th>所在地:&nbsp;</th>
  49. <td>
  50. ${record.szdzw }
  51. </td>
  52. <th>所在港口:&nbsp;</th>
  53. <td >
  54. ${record.szgkzw }
  55. </td>
  56. </tr>
  57. <tr>
  58. <th>所在港区:&nbsp;</th>
  59. <td >
  60. ${record.szgqzw }
  61. </td>
  62. <th>航程(海里):&nbsp;</th>
  63. <td >
  64. ${record.hc }
  65. </td>
  66. </tr>
  67. <tr>
  68. <th>船公司:&nbsp;</th>
  69. <td colspan="3">
  70. ${record.cgs }
  71. </td>
  72. </tr>
  73. <tr>
  74. <th>起点港:&nbsp;</th>
  75. <td >
  76. ${record.qdg }
  77. </td>
  78. <th>终点港:&nbsp;</th>
  79. <td >
  80. ${record.zdg }
  81. </td>
  82. </tr>
  83. <tr>
  84. <th>船期:&nbsp;</th>
  85. <td >
  86. ${record.cqzw }
  87. </td>
  88. <td colspan="2">
  89. <table class="apply2" cellpadding="0" cellspacing="0">
  90. <thead>
  91. <tr>
  92. <th text-align: center>船期</th>
  93. <th text-align: center>开船日期</th>
  94. <th text-align: center>班次数</th>
  95. </tr>
  96. </thead>
  97. <c:forEach items="${hxcqlist}" var="list" varStatus="status">
  98. <tr>
  99. <td>${record.cqzw }</td>
  100. <td>${list.kcrq }</td>
  101. <td>${list.bcs }</td>
  102. </tr>
  103. </c:forEach>
  104. </table>
  105. </td>
  106. </tr>
  107. <tr>
  108. <th>停靠港:&nbsp;</th>
  109. <td colspan="3">
  110. ${record.tkg }
  111. </td>
  112. </tr>
  113. <tr>
  114. <th>备注:&nbsp;</th>
  115. <td colspan="3">
  116. ${record.bz }
  117. </td>
  118. </tr>
  119. <tr>
  120. <th>本月内贸完成量(TEU):&nbsp;</th>
  121. <td >
  122. ${record.bynmwcl }
  123. </td>
  124. <th>本月外贸完成量(TEU):&nbsp;</th>
  125. <td colspan="3">
  126. ${record.bywmwcl }
  127. </td>
  128. </tr>
  129. <tr>
  130. <th>填写人:&nbsp;</th>
  131. <td >
  132. ${record.yhmc }
  133. </td>
  134. <th>填写时间:&nbsp;</th>
  135. <td colspan="3">
  136. ${record.tbsj }
  137. </td>
  138. </tr>
  139. </table>
  140. <div id="buttons">
  141. <a class="btn btn-default btn-sm" href="#" onclick="hxgl.detail.back()">
  142. <i class="glyphicon glyphicon-arrow-left"></i>
  143. 返回</a>
  144. </div>
  145. </form>
  146. </div>
  147. </div>
  148. </div>
  149. </body>
  150. </html>