hxhbtj.jsp 4.3 KB

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