123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>江苏省港口建设与经营管理信息系统</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <%@ include file="../../common.jsp"%>
- <script type="text/javascript" src="${app }/static/biz/js/gkyxtjyfx/hxhbtj/hxhbtjmain.js"></script>
- <script type="text/javascript">
- $(document).ready(function () {
- $('.dqztselectpicker').selectpicker({
- width:'80%'
- });
- iFrameHeightIframe('${menuid}');//自适应高度
- });
- </script>
- <style type="text/css">
- .apply th {
- width: 9%;
- height: 35px;
- font-weight: normal;
- border-bottom: 1px solid #dadbda;
- color: #185f8a;
- background: #e6eff9;
- font-size: 14px;
- text-align: center;
- }
- .apply td {
- width: 15%;
- height: 30px;
- border: 1px solid #e2e3cb;
- text-indent: 5px;
- font-size: 14px;
- color: #000000
- }
- </style>
- </head>
- <body>
- <div class="box" >
- <div class="box-content">
- <h1 align="center" style="margin-top:0px;"><font style="font-size:25px;color:#196794;font-family:微软雅黑;font-weight: bold;">江苏省港口集装箱航线航班月度统计表</font></h1>
- <form action="${app }/hxhbtj/main" id="hxhbtjform" method="post">
- <input type="hidden" name="menuid" value="${menuid }">
- <div>
- <table class="search_table" cellpadding="0" cellspacing="0">
- <tr>
- <th width="10%"></th>
- <th width="24%"></th>
- <th width="10%"></th>
- <th width="24%"></th>
- <th width="10%"></th>
- <th width="22%"></th>
- </tr>
- <tr>
- <td class="right">
- 所在地区:
- </td>
- <td>
- <select class='dqztselectpicker' id="dq" name="dq">
- <option ></option>
- <c:forEach items="${dqlist}" var="list" varStatus="status">
- <option value="${list.id }" <c:if test="${dq == list.id }">selected</c:if>>${list.text }</option>
- </c:forEach>
- </select>
- </td>
- <td class="right">
- 日期:
- </td>
- <td>
- <input class="Wdate" id="rq" name="rq" value="${rq }" type="text" onFocus="WdatePicker({lang:'zh-cn',skin:'default',dateFmt:'yyyy-MM'})">
- </td>
- </tr>
- <tr>
- <td class="right" colspan="6">
- <authz:hasPermission name="${appName}:hxhbtj:main">
- <a class="btn btn-default btn-sm" href="#" onclick="hxhbtj.main.search()">
- <i class="glyphicon glyphicon-search"></i>查询
- </a>
- </authz:hasPermission>
- <authz:hasPermission name="${appName}:hxhbtj:add">
- <a class="btn btn-default btn-sm" href="#" onclick="hxhbtj.main.add()">
- <i class="glyphicon glyphicon-plus"></i>新增
- </a>
- </authz:hasPermission>
- </td>
- </tr>
- </table>
- </div>
- <!-- 列表 -->
- <div style="background-color:#f4f4f4;">
- <table class="main_table" cellpadding="0" cellspacing="0">
- <thead>
- <tr>
- <th width="5%">序号</th>
- <th width="10%">地区</th>
- <th width="20%">本月完成量(TEU)</th>
- <th width="20%">本年累计量(TEU)</th>
- <th width="20%">同比增长数(%)</th>
- <th width="20%">日期</th>
- <th width="15%">操作</th>
- </tr>
- </thead>
- <c:forEach items="${list}" var="list" varStatus="status">
- <tr >
- <td >${status.count }</td>
- <td >${list.dqzw }</td>
- <td >${list.bywcl }</td>
- <td >${list.bnljl }</td>
- <td >${list.tbzzs }</td>
- <td >${list.rq }</td>
- <td class="operatetd">
- <authz:hasPermission name="${appName}:hxhbtj:main">
- <a class="btn btn-default btn-xs" href="#" onclick="hxhbtj.main.view('${list.id}')" title="查看">
- <i class="glyphicon glyphicon-search"></i>
- </a>
- </authz:hasPermission>
- <c:if test="${list.recordStatus == 1 }">
- <authz:hasPermission name="${appName}:hxhbtj:edit">
- <a class="btn btn-default btn-xs" href="#" onclick="hxhbtj.main.edit('${list.id}')" title="编辑">
- <i class="glyphicon glyphicon-pencil"></i>
- </a>
- </authz:hasPermission>
- <authz:hasPermission name="${appName}:hxhbtj:delete">
- <a class="btn btn-default btn-xs" href="#" onclick="hxhbtj.main.del('${list.id}')" title="删除">
- <i class="glyphicon glyphicon-trash"></i>
- </a>
- </authz:hasPermission>
- </c:if>
- </td>
- </tr>
- </c:forEach>
- </table>
- </div>
- <!-- 分页 -->
- <jsp:include page="../../pageinfo.jsp"></jsp:include>
- </form>
- </div>
- </div>
-
- </body>
- </html>
|