hxhbtj.jsp 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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/gkyxtjyfx/hxhbtj/hxhbtjmain.js"></script>
  11. <script type="text/javascript">
  12. $(document).ready(function () {
  13. $('.dqztselectpicker').selectpicker({
  14. width:'80%'
  15. });
  16. iFrameHeightIframe('${menuid}');//自适应高度
  17. });
  18. </script>
  19. <style type="text/css">
  20. .apply th {
  21. width: 9%;
  22. height: 35px;
  23. font-weight: normal;
  24. border-bottom: 1px solid #dadbda;
  25. color: #185f8a;
  26. background: #e6eff9;
  27. font-size: 14px;
  28. text-align: center;
  29. }
  30. .apply td {
  31. width: 15%;
  32. height: 30px;
  33. border: 1px solid #e2e3cb;
  34. text-indent: 5px;
  35. font-size: 14px;
  36. color: #000000
  37. }
  38. </style>
  39. </head>
  40. <body>
  41. <div class="box" >
  42. <div class="box-content">
  43. <h1 align="center" style="margin-top:0px;"><font style="font-size:25px;color:#196794;font-family:微软雅黑;font-weight: bold;">江苏省港口集装箱航线航班月度统计表</font></h1>
  44. <form action="${app }/hxhbtj/main" id="hxhbtjform" method="post">
  45. <input type="hidden" name="menuid" value="${menuid }">
  46. <div>
  47. <table class="search_table" cellpadding="0" cellspacing="0">
  48. <tr>
  49. <th width="10%"></th>
  50. <th width="24%"></th>
  51. <th width="10%"></th>
  52. <th width="24%"></th>
  53. <th width="10%"></th>
  54. <th width="22%"></th>
  55. </tr>
  56. <tr>
  57. <td class="right">
  58. 所在地区:&nbsp;
  59. </td>
  60. <td>
  61. <select class='dqztselectpicker' id="dq" name="dq">
  62. <option ></option>
  63. <c:forEach items="${dqlist}" var="list" varStatus="status">
  64. <option value="${list.id }" <c:if test="${dq == list.id }">selected</c:if>>${list.text }</option>
  65. </c:forEach>
  66. </select>
  67. </td>
  68. <td class="right">
  69. 日期:&nbsp;
  70. </td>
  71. <td>
  72. <input class="Wdate" id="rq" name="rq" value="${rq }" type="text" onFocus="WdatePicker({lang:'zh-cn',skin:'default',dateFmt:'yyyy-MM'})">
  73. </td>
  74. </tr>
  75. <tr>
  76. <td class="right" colspan="6">
  77. <authz:hasPermission name="${appName}:hxhbtj:main">
  78. <a class="btn btn-default btn-sm" href="#" onclick="hxhbtj.main.search()">
  79. <i class="glyphicon glyphicon-search"></i>查询
  80. </a>
  81. </authz:hasPermission>
  82. <authz:hasPermission name="${appName}:hxhbtj:add">
  83. <a class="btn btn-default btn-sm" href="#" onclick="hxhbtj.main.add()">
  84. <i class="glyphicon glyphicon-plus"></i>新增
  85. </a>
  86. </authz:hasPermission>
  87. </td>
  88. </tr>
  89. </table>
  90. </div>
  91. <!-- 列表 -->
  92. <div style="background-color:#f4f4f4;">
  93. <table class="main_table" cellpadding="0" cellspacing="0">
  94. <thead>
  95. <tr>
  96. <th width="5%">序号</th>
  97. <th width="10%">地区</th>
  98. <th width="20%">本月完成量(TEU)</th>
  99. <th width="20%">本年累计量(TEU)</th>
  100. <th width="20%">同比增长数(%)</th>
  101. <th width="20%">日期</th>
  102. <th width="15%">操作</th>
  103. </tr>
  104. </thead>
  105. <c:forEach items="${list}" var="list" varStatus="status">
  106. <tr >
  107. <td >${status.count }</td>
  108. <td >${list.dqzw }</td>
  109. <td >${list.bywcl }</td>
  110. <td >${list.bnljl }</td>
  111. <td >${list.tbzzs }</td>
  112. <td >${list.rq }</td>
  113. <td class="operatetd">
  114. <authz:hasPermission name="${appName}:hxhbtj:main">
  115. <a class="btn btn-default btn-xs" href="#" onclick="hxhbtj.main.view('${list.id}')" title="查看">
  116. <i class="glyphicon glyphicon-search"></i>
  117. </a>
  118. </authz:hasPermission>
  119. <c:if test="${list.recordStatus == 1 }">
  120. <authz:hasPermission name="${appName}:hxhbtj:edit">
  121. <a class="btn btn-default btn-xs" href="#" onclick="hxhbtj.main.edit('${list.id}')" title="编辑">
  122. <i class="glyphicon glyphicon-pencil"></i>
  123. </a>
  124. </authz:hasPermission>
  125. <authz:hasPermission name="${appName}:hxhbtj:delete">
  126. <a class="btn btn-default btn-xs" href="#" onclick="hxhbtj.main.del('${list.id}')" title="删除">
  127. <i class="glyphicon glyphicon-trash"></i>
  128. </a>
  129. </authz:hasPermission>
  130. </c:if>
  131. </td>
  132. </tr>
  133. </c:forEach>
  134. </table>
  135. </div>
  136. <!-- 分页 -->
  137. <jsp:include page="../../pageinfo.jsp"></jsp:include>
  138. </form>
  139. </div>
  140. </div>
  141. </body>
  142. </html>