瀏覽代碼

git-svn-id: https://192.168.57.71/svn/jsgkj@1298 931142cf-59ea-a443-aa0e-51397b428577

ld_guxl 8 年之前
父節點
當前提交
c7755efdd1

+ 41 - 84
gkjsjy/trunk/WebContent/WEB-INF/pages/gkyxtjyfx/hxhbtj/hxhbtj.jsp

@@ -67,102 +67,59 @@
 			                	日期: 
 			                </td>
 			                <td>
-			                	<input class="Wdate" name="rq" value="${rq }" type="text" onFocus="WdatePicker({lang:'zh-cn',skin:'default',dateFmt:'yyyy-MM'})">
+			                	<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">
 		                       	<a class="btn btn-default btn-sm" href="#" onclick="hxhbtj.main.search()">
 							   		<i class="glyphicon glyphicon-search"></i>查询
+						   		</a>
+							   	<a class="btn btn-default btn-sm" href="#"  onclick="hxhbtj.main.add()">
+						   			<i class="glyphicon glyphicon-plus"></i>新增
+						   		</a>
 	                        </td>
 	                    </tr>
                     </table>
           		</div>
-			<div class="apply_fill">
- <h2 align="center" style="margin-top:0px;"><font style="font-size:16px;color:#196794;font-family:微软雅黑;font-weight: bold;">集装箱吞吐量完成情况</h2>
-					<table class="apply" cellpadding="0" cellspacing="0">
-						<tr>
-							<th colspan="2">本月完成量:&nbsp;</th>
-							<td>
-								${record.bywcl }
-							</td>
-							<th colspan="2">本年累计量:&nbsp;</th>
-							<td>
-								${record.bnljl }
-							</td>
-							<th colspan="2">同比增长数(%):&nbsp;</th>
-							<td>
-								${record.tbzzs }
-							</td>
-						</tr>
-						<tr>
-						<th rowspan="2">其中:</th>
-						<th>外贸:&nbsp;</th>
-						<td>${record.bywmwcl }</td>
-						<th rowspan="2">其中:</th>
-						<th>外贸:&nbsp;</th>
-						<td>${record.bnwmljl }</td>
-						<th rowspan="2">其中:</th>
-						<th>外贸:&nbsp;</th>
-						<td>${record.wmtbzzs }</td>
-						</tr>
-						<tr>
-						<th>内贸:&nbsp;</th>
-						<td>${record.bynmwcl }</td>
-						<th>内贸:&nbsp;</th>
-						<td>${record.bnnmljl }</td>
-						<th>内贸:&nbsp;</th>
-						<td>${record.nmtbzzs }</td>
-						</tr>
-					</table>
-<h2 align="center" style="margin-top:0px;"><font style="font-size:16px;color:#196794;font-family:微软雅黑;font-weight: bold;">集装箱航线航班开辟情况</h2>
-				<table class="apply">
-				<tr>
-				<th></th>
-				<th>本月营运航线总数</th>
-				<th>本月营运航班总数</th>
-				<th>本月新开辟航线数</th>
-				<th>本月停开航线数</th>
-				</tr>
-				<tr>
-				<th>远洋航线</th>
-				<td>${record.byyyhxzs1 }</td>
-				<td>${record.byyyhbzs1 }</td>
-				<td>${record.byxkphxs1 }</td>
-				<td>${record.bytkhxs1 }</td>
-				</tr>
-				<tr>
-				<th>近洋航线</th>
-				<td>${record.byyyhxzs2 }</td>
-				<td>${record.byyyhbzs2 }</td>
-				<td>${record.byxkphxs2 }</td>
-				<td>${record.bytkhxs2 }</td>
-				</tr>
-				<tr>
-				<th>外贸内支线</th>
-				<td>${record.byyyhxzs3 }</td>
-				<td>${record.byyyhbzs3 }</td>
-				<td>${record.byxkphxs3 }</td>
-				<td>${record.bytkhxs3 }</td>
-				</tr>
-				<tr>
-				<th>内贸航线</th>
-				<td>${record.byyyhxzs4 }</td>
-				<td>${record.byyyhbzs4 }</td>
-				<td>${record.byxkphxs4 }</td>
-				<td>${record.bytkhxs4 }</td>
-				</tr>
-				<tr>
-				<th>填表人:</th>
-				<td>${record.tbr }</td>
-				<th>联系电话:</th>
-				<td colspan="2">${record.lxdh }</td>
-				</tr>
-				</table>
+				<!-- 列表 -->
+			    <div  style="background-color:#f4f4f4;">
+				    <table class="main_table" cellpadding="0" cellspacing="0">
+					    <thead>
+						    <tr>
+						    	<th width="5%">序号</th>
+				    			<th width="20%">本月完成量</th>
+				        		<th width="20%">本年累计量</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.bywcl }</td>
+						        <td >${list.bnljl }</td>
+								<td >${list.tbzzs }</td>
+								<td >${list.rq }</td>
+						        <td class="operatetd">
+							        <a class="btn btn-default btn-xs" href="#" onclick="hxhbtj.main.view('${list.id}')" title="查看">
+							            <i class="glyphicon glyphicon-search"></i>
+							        </a>
+									<a class="btn btn-default btn-xs" href="#"  onclick="hxhbtj.main.edit('${list.id}')" title="编辑">
+								   		<i class="glyphicon glyphicon-pencil"></i>
+								   	</a>
+								    <a class="btn btn-default btn-xs" href="#" onclick="hxhbtj.main.del('${list.id}')" title="删除">
+								   		<i class="glyphicon glyphicon-trash"></i>
+								   	</a>
+						        </td>
+						    </tr>
+					    </c:forEach>
+				    </table>
 				</div>
+	  			<!-- 分页 -->
+	  			<jsp:include page="../../pageinfo.jsp"></jsp:include>
 				</form>
-				
-				
 		</div>
 
 </div>

+ 173 - 0
gkjsjy/trunk/WebContent/WEB-INF/pages/gkyxtjyfx/hxhbtj/hxhbtj1.jsp

@@ -0,0 +1,173 @@
+<%@ 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 () {
+			hxhbtj.main.init();
+			initgkSelect('szgksel','${szgkid }','','showgq','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;">江苏省港口集装箱航线航班月度统计表</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">
+			                	所在港口:&nbsp;
+			                </td>
+				            <td>
+				            	<span id="szgksel">
+								</span>
+				            </td>
+				            <td class="right">
+			                	日期:&nbsp;
+			                </td>
+			                <td>
+			                	<input class="Wdate" name="rq" value="${rq }" type="text" onFocus="WdatePicker({lang:'zh-cn',skin:'default',dateFmt:'yyyy-MM'})">
+			                </td>
+					   </tr>
+	                <tr>
+	                        <td class="right" colspan="6">
+		                       	<a class="btn btn-default btn-sm" href="#" onclick="hxhbtj.main.search()">
+							   		<i class="glyphicon glyphicon-search"></i>查询
+	                        </td>
+	                    </tr>
+                    </table>
+          		</div>
+			<div class="apply_fill">
+ <h2 align="center" style="margin-top:0px;"><font style="font-size:16px;color:#196794;font-family:微软雅黑;font-weight: bold;">集装箱吞吐量完成情况</h2>
+					<table class="apply" cellpadding="0" cellspacing="0">
+						<tr>
+							<th colspan="2">本月完成量:&nbsp;</th>
+							<td>
+								${record.bywcl }
+							</td>
+							<th colspan="2">本年累计量:&nbsp;</th>
+							<td>
+								${record.bnljl }
+							</td>
+							<th colspan="2">同比增长数(%):&nbsp;</th>
+							<td>
+								${record.tbzzs }
+							</td>
+						</tr>
+						<tr>
+						<th rowspan="2">其中:</th>
+						<th>外贸:&nbsp;</th>
+						<td>${record.bywmwcl }</td>
+						<th rowspan="2">其中:</th>
+						<th>外贸:&nbsp;</th>
+						<td>${record.bnwmljl }</td>
+						<th rowspan="2">其中:</th>
+						<th>外贸:&nbsp;</th>
+						<td>${record.wmtbzzs }</td>
+						</tr>
+						<tr>
+						<th>内贸:&nbsp;</th>
+						<td>${record.bynmwcl }</td>
+						<th>内贸:&nbsp;</th>
+						<td>${record.bnnmljl }</td>
+						<th>内贸:&nbsp;</th>
+						<td>${record.nmtbzzs }</td>
+						</tr>
+					</table>
+<h2 align="center" style="margin-top:0px;"><font style="font-size:16px;color:#196794;font-family:微软雅黑;font-weight: bold;">集装箱航线航班开辟情况</h2>
+				<table class="apply">
+				<tr>
+				<th></th>
+				<th>本月营运航线总数</th>
+				<th>本月营运航班总数</th>
+				<th>本月新开辟航线数</th>
+				<th>本月停开航线数</th>
+				</tr>
+				<tr>
+				<th>远洋航线</th>
+				<td>${record.byyyhxzs1 }</td>
+				<td>${record.byyyhbzs1 }</td>
+				<td>${record.byxkphxs1 }</td>
+				<td>${record.bytkhxs1 }</td>
+				</tr>
+				<tr>
+				<th>近洋航线</th>
+				<td>${record.byyyhxzs2 }</td>
+				<td>${record.byyyhbzs2 }</td>
+				<td>${record.byxkphxs2 }</td>
+				<td>${record.bytkhxs2 }</td>
+				</tr>
+				<tr>
+				<th>外贸内支线</th>
+				<td>${record.byyyhxzs3 }</td>
+				<td>${record.byyyhbzs3 }</td>
+				<td>${record.byxkphxs3 }</td>
+				<td>${record.bytkhxs3 }</td>
+				</tr>
+				<tr>
+				<th>内贸航线</th>
+				<td>${record.byyyhxzs4 }</td>
+				<td>${record.byyyhbzs4 }</td>
+				<td>${record.byxkphxs4 }</td>
+				<td>${record.bytkhxs4 }</td>
+				</tr>
+				<tr>
+				<th>填表人:</th>
+				<td>${record.tbr }</td>
+				<th>联系电话:</th>
+				<td colspan="2">${record.lxdh }</td>
+				</tr>
+				</table>
+				</div>
+				</form>
+				
+				
+		</div>
+
+</div>
+
+	
+</body>
+
+</html>

+ 161 - 0
gkjsjy/trunk/WebContent/WEB-INF/pages/gkyxtjyfx/hxhbtj/hxhbtjAdd.jsp

@@ -0,0 +1,161 @@
+<%@ 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/hxhbtjdetail.js"></script>
+	<script type="text/javascript">
+		$(document).ready(function () {
+			/* hxhbtj.main.init(); */
+			initgkSelect('szgksel','${szgkid }','','showgq','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" >
+			<div class="apply_fill">
+				<form  id="addform" method="post"> 			
+ 					<input type="hidden" name="path" id="path" value="${path }"/>
+					<table class="apply" cellpadding="0" cellspacing="0">
+						<tr>
+							<th><span class="needwrite">*</span>所在港口:&nbsp;</th>
+							<td >
+								<span id="szgksel"></span>
+							</td>
+							<th><span class="needwrite">*</span>日期:&nbsp;</th>
+							<td >
+								<input class="Wdate" id="rq" name="rq" type="text" onFocus="WdatePicker({lang:'zh-cn',skin:'default',dateFmt:'yyyy-MM'})">
+							</td>
+						</tr>
+	                </table>
+	                <div style="padding-left: 95%; padding-top: 10px;">
+                       	<a class="btn btn-default btn-sm" href="#" onclick="hxhbtj.detail.stat()">
+					   		<i class="glyphicon glyphicon-search"></i>统计</a>
+			   		</div>
+	 				<h2 align="center" style="margin-top:0px;"><font style="font-size:16px;color:#196794;font-family:微软雅黑;font-weight: bold;">集装箱吞吐量完成情况</h2>
+					<table class="apply" cellpadding="0" cellspacing="0">
+						<tr>
+							<th colspan="2">本月完成量:&nbsp;</th>
+							<td>
+								<input type="text" class="form-control" id="bywcl" name="bywcl">
+							</td>
+							<th colspan="2">本年累计量:&nbsp;</th>
+							<td>
+								<input type="text" class="form-control" id="bnljl" name="bnljl">
+							</td>
+							<th colspan="2">同比增长数(%):&nbsp;</th>
+							<td>
+								<input type="text" class="form-control" id="tbzzs" name="tbzzs">
+							</td>
+						</tr>
+						<tr>
+							<th rowspan="2">其中:</th>
+							<th>外贸:&nbsp;</th>
+							<td><input type="text" class="form-control" id="wmjzxttl" name="wmjzxttl"></td>
+							<th rowspan="2">其中:</th>
+							<th>外贸:&nbsp;</th>
+							<td><input type="text" class="form-control" id="nwmjzxttl" name="nwmjzxttl"></td>
+							<th rowspan="2">其中:</th>
+							<th>外贸:&nbsp;</th>
+							<td><input type="text" class="form-control" id="wmtbzzs" name="wmtbzzs"></td>
+						</tr>
+						<tr>
+							<th>内贸:&nbsp;</th>
+							<td><input type="text" class="form-control" id="nmjzxttl" name="nmjzxttl"></td>
+							<th>内贸:&nbsp;</th>
+							<td><input type="text" class="form-control" id="nnmjzxttl" name="nnmjzxttl"></td>
+							<th>内贸:&nbsp;</th>
+							<td><input type="text" class="form-control" id="nmtbzzs" name="nmtbzzs"></td>
+						</tr>
+					</table>
+					<h2 align="center" style="margin-top:0px;"><font style="font-size:16px;color:#196794;font-family:微软雅黑;font-weight: bold;">集装箱航线航班开辟情况</h2>
+					<table class="apply">
+						<tr>
+							<th></th>
+							<th>本月营运航线总数</th>
+							<th>本月营运航班总数</th>
+							<th>本月新开辟航线数</th>
+							<th>本月停开航线数</th>
+						</tr>
+						<tr>
+							<th>远洋航线</th>
+							<td><input type="text" class="form-control" id="yyhxts" name="yyhxts"></td>
+							<td><input type="text" class="form-control" id="yyhxhbs" name="yyhxhbs"></td>
+							<td><input type="text" class="form-control" id="yyxkphxs" name="yyxkphxs"></td>
+							<td><input type="text" class="form-control" id="yytkhxs" name="yytkhxs"></td>
+						</tr>
+						<tr>
+						<th>近洋航线</th>
+							<td><input type="text" class="form-control" id="jyhxts" name="jyhxts"></td>
+							<td><input type="text" class="form-control" id="jyhxhbs" name="jyhxhbs"></td>
+							<td><input type="text" class="form-control" id="jyxkphxs" name="jyxkphxs"></td>
+							<td><input type="text" class="form-control" id="jytkhxs" name="jytkhxs"></td>
+						</tr>
+						<tr>
+							<th>外贸内支线</th>
+							<td><input type="text" class="form-control" id="nzxts" name="nzxts"></td>
+							<td><input type="text" class="form-control" id="nzxhbs" name="nzxhbs"></td>
+							<td><input type="text" class="form-control" id="nzxxkphxs" name="nzxxkphxs"></td>
+							<td><input type="text" class="form-control" id="nzxtkhxs" name="nzxtkhxs"></td>
+						</tr>
+						<tr>
+							<th>内贸航线</th>
+							<td><input type="text" class="form-control" id="nmhxts" name="nmhxts"></td>
+							<td><input type="text" class="form-control" id="nmhxhbs" name="nmhxhbs"></td>
+							<td><input type="text" class="form-control" id="nmxkphxs" name="nmxkphxs"></td>
+							<td><input type="text" class="form-control" id="nmtkhxs" name="nmtkhxs"></td>
+						</tr>
+						<tr>
+							<th>填表人:</th>
+							<td><input type="text" class="form-control" id="tbr" readOnly = "true"></td>
+							<th>联系电话:</th>
+							<td colspan="2"><input type="text" class="form-control" id="lxdh" readOnly = "true"></td>
+						</tr>
+					</table>
+				</form>
+				<div id="buttons">
+            	<a class="btn btn-default btn-sm" href="#" onclick="hxhbtj.detail.save()">
+			   		<i class="glyphicon glyphicon-floppy-disk"></i>保存
+			   	</a>
+			   	<a class="btn btn-default btn-sm" href="#" onclick="hxhbtj.detail.saveTbzt('${record.id}')">
+					<i class="glyphicon glyphicon-share"></i>提交
+				</a>
+				<a class="btn btn-default btn-sm" href="#"  onclick="hxhbtj.detail.back()">
+					<i class="glyphicon glyphicon-arrow-left"></i>返回
+				</a>
+         		</div>
+			</div>
+		</div>
+	</div>
+</body>
+
+</html>

+ 156 - 0
gkjsjy/trunk/WebContent/WEB-INF/pages/gkyxtjyfx/hxhbtj/hxhbtjEdit.jsp

@@ -0,0 +1,156 @@
+<%@ 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/hxhbtjdetail.js"></script>
+	<script type="text/javascript">
+		$(document).ready(function () {
+			initgkSelect('szgksel','${szgkid }','','showgq','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" >
+			<div class="apply_fill">
+				<form  id="addform" method="post"> 			
+ 					<input type="hidden" name="id" value="${record.id }">
+					<table class="apply" cellpadding="0" cellspacing="0">
+						<tr>
+							<th><span class="needwrite">*</span>所在港口:&nbsp;</th>
+							<td >
+								<span id="szgksel"></span>
+							</td>
+							<th><span class="needwrite">*</span>日期:&nbsp;</th>
+							<td >
+								<input class="Wdate" id="rq" name="rq" type="text" onFocus="WdatePicker({lang:'zh-cn',skin:'default',dateFmt:'yyyy-MM'})" value="${record.rq }">
+							</td>
+						</tr>
+	                </table>
+	 				<h2 align="center" style="margin-top:0px;"><font style="font-size:16px;color:#196794;font-family:微软雅黑;font-weight: bold;">集装箱吞吐量完成情况</h2>
+					<table class="apply" cellpadding="0" cellspacing="0">
+						<tr>
+							<th colspan="2">本月完成量:&nbsp;</th>
+							<td>
+								<input type="text" class="form-control" id="bywcl" name="bywcl" value="${record.bywcl }">
+							</td>
+							<th colspan="2">本年累计量:&nbsp;</th>
+							<td>
+								<input type="text" class="form-control" id="bnljl" name="bnljl" value="${record.bnljl }">
+							</td>
+							<th colspan="2">同比增长数(%):&nbsp;</th>
+							<td>
+								<input type="text" class="form-control" id="tbzzs" name="tbzzs" value="${record.tbzzs }">
+							</td>
+						</tr>
+						<tr>
+							<th rowspan="2">其中:</th>
+							<th>外贸:&nbsp;</th>
+							<td><input type="text" class="form-control" id="wmjzxttl" name="wmjzxttl" value="${record.wmjzxttl }"></td>
+							<th rowspan="2">其中:</th>
+							<th>外贸:&nbsp;</th>
+							<td><input type="text" class="form-control" id="nwmjzxttl" name="nwmjzxttl" value="${record.nwmjzxttl }"></td>
+							<th rowspan="2">其中:</th>
+							<th>外贸:&nbsp;</th>
+							<td><input type="text" class="form-control" id="wmtbzzs" name="wmtbzzs" value="${record.wmtbzzs }"></td>
+						</tr>
+						<tr>
+							<th>内贸:&nbsp;</th>
+							<td><input type="text" class="form-control" id="nmjzxttl" name="nmjzxttl" value="${record.nmjzxttl }"></td>
+							<th>内贸:&nbsp;</th>
+							<td><input type="text" class="form-control" id="nnmjzxttl" name="nnmjzxttl" value="${record.nnmjzxttl }"></td>
+							<th>内贸:&nbsp;</th>
+							<td><input type="text" class="form-control" id="nmtbzzs" name="nmtbzzs" value="${record.nmtbzzs }"></td>
+						</tr>
+					</table>
+					<h2 align="center" style="margin-top:0px;"><font style="font-size:16px;color:#196794;font-family:微软雅黑;font-weight: bold;">集装箱航线航班开辟情况</h2>
+					<table class="apply">
+						<tr>
+							<th></th>
+							<th>本月营运航线总数</th>
+							<th>本月营运航班总数</th>
+							<th>本月新开辟航线数</th>
+							<th>本月停开航线数</th>
+						</tr>
+						<tr>
+							<th>远洋航线</th>
+							<td><input type="text" class="form-control" id="yyhxts" name="yyhxts" value="${record.yyhxts }"></td>
+							<td><input type="text" class="form-control" id="yyhxhbs" name="yyhxhbs" value="${record.yyhxhbs }"></td>
+							<td><input type="text" class="form-control" id="yyxkphxs" name="yyxkphxs" value="${record.yyxkphxs }"></td>
+							<td><input type="text" class="form-control" id="yytkhxs" name="yytkhxs" value="${record.yytkhxs }"></td>
+						</tr>
+						<tr>
+						<th>近洋航线</th>
+							<td><input type="text" class="form-control" id="jyhxts" name="jyhxts" value="${record.jyhxts }"></td>
+							<td><input type="text" class="form-control" id="jyhxhbs" name="jyhxhbs" value="${record.jyhxhbs }"></td>
+							<td><input type="text" class="form-control" id="jyxkphxs" name="jyxkphxs" value="${record.jyxkphxs }"></td>
+							<td><input type="text" class="form-control" id="jytkhxs" name="jytkhxs" value="${record.jytkhxs }"></td>
+						</tr>
+						<tr>
+							<th>外贸内支线</th>
+							<td><input type="text" class="form-control" id="nzxts" name="nzxts" value="${record.nzxts }"></td>
+							<td><input type="text" class="form-control" id="nzxhbs" name="nzxhbs" value="${record.nzxhbs }"></td>
+							<td><input type="text" class="form-control" id="nzxxkphxs" name="nzxxkphxs" value="${record.nzxxkphxs }"></td>
+							<td><input type="text" class="form-control" id="nzxtkhxs" name="nzxtkhxs" value="${record.nzxtkhxs }"></td>
+						</tr>
+						<tr>
+							<th>内贸航线</th>
+							<td><input type="text" class="form-control" id="nmhxts" name="nmhxts" value="${record.nmhxts }"></td>
+							<td><input type="text" class="form-control" id="nmhxhbs" name="nmhxhbs" value="${record.nmhxhbs }"></td>
+							<td><input type="text" class="form-control" id="nmxkphxs" name="nmxkphxs" value="${record.nmxkphxs }"></td>
+							<td><input type="text" class="form-control" id="nmtkhxs" name="nmtkhxs" value="${record.nmtkhxs }"></td>
+						</tr>
+						<tr>
+							<th>填表人:</th>
+							<td><input type="text" class="form-control" id="tbr" readOnly = "true" value="${record.tbr }"></td>
+							<th>联系电话:</th>
+							<td colspan="2"><input type="text" class="form-control" id="lxdh" readOnly = "true" value="${record.lxdh }"></td>
+						</tr>
+					</table>
+				</form>
+				<div id="buttons">
+            	<a class="btn btn-default btn-sm" href="#" onclick="hxhbtj.detail.save()">
+			   		<i class="glyphicon glyphicon-floppy-disk"></i>保存
+			   	</a>
+			   	<a class="btn btn-default btn-sm" href="#" onclick="hxhbtj.detail.submit()">
+					<i class="glyphicon glyphicon-share"></i>提交
+				</a>
+				<a class="btn btn-default btn-sm" href="#"  onclick="hxhbtj.detail.back()">
+					<i class="glyphicon glyphicon-arrow-left"></i>返回
+				</a>
+         		</div>
+			</div>
+		</div>
+	</div>
+</body>
+
+</html>

+ 160 - 0
gkjsjy/trunk/WebContent/WEB-INF/pages/gkyxtjyfx/hxhbtj/hxhbtjStat.jsp

@@ -0,0 +1,160 @@
+<%@ 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/hxhbtjdetail.js"></script>
+	<script type="text/javascript">
+		$(document).ready(function () {
+			initgkSelect('szgksel','${szgkid }','','showgq','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" >
+			<div class="apply_fill">
+				<form  id="addform" method="post"> 			
+ 					<input type="hidden" name="id" value="${record.id }">
+					<table class="apply" cellpadding="0" cellspacing="0">
+						<tr>
+							<th><span class="needwrite">*</span>所在港口:&nbsp;</th>
+							<td >
+								<span id="szgksel"></span>
+							</td>
+							<th><span class="needwrite">*</span>日期:&nbsp;</th>
+							<td >
+								<input class="Wdate" id="rq" name="rq" type="text" onFocus="WdatePicker({lang:'zh-cn',skin:'default',dateFmt:'yyyy-MM'})" value="${record.rq }">
+							</td>
+						</tr>
+	                </table>
+	                <div style="padding-left: 95%; padding-top: 10px;">
+                       	<a class="btn btn-default btn-sm" href="#" onclick="hxhbtj.detail.stat()">
+					   		<i class="glyphicon glyphicon-search"></i>统计</a>
+			   		</div>
+	 				<h2 align="center" style="margin-top:0px;"><font style="font-size:16px;color:#196794;font-family:微软雅黑;font-weight: bold;">集装箱吞吐量完成情况</h2>
+					<table class="apply" cellpadding="0" cellspacing="0">
+						<tr>
+							<th colspan="2">本月完成量:&nbsp;</th>
+							<td>
+								<input type="text" class="form-control" id="bywcl" name="bywcl" value="${record.bywcl }">
+							</td>
+							<th colspan="2">本年累计量:&nbsp;</th>
+							<td>
+								<input type="text" class="form-control" id="bnljl" name="bnljl" value="${record.bnljl }">
+							</td>
+							<th colspan="2">同比增长数(%):&nbsp;</th>
+							<td>
+								<input type="text" class="form-control" id="tbzzs" name="tbzzs" value="${record.tbzzs }">
+							</td>
+						</tr>
+						<tr>
+							<th rowspan="2">其中:</th>
+							<th>外贸:&nbsp;</th>
+							<td><input type="text" class="form-control" id="wmjzxttl" name="wmjzxttl" value="${record.wmjzxttl }"></td>
+							<th rowspan="2">其中:</th>
+							<th>外贸:&nbsp;</th>
+							<td><input type="text" class="form-control" id="nwmjzxttl" name="nwmjzxttl" value="${record.nwmjzxttl }"></td>
+							<th rowspan="2">其中:</th>
+							<th>外贸:&nbsp;</th>
+							<td><input type="text" class="form-control" id="wmtbzzs" name="wmtbzzs" value="${record.wmtbzzs }"></td>
+						</tr>
+						<tr>
+							<th>内贸:&nbsp;</th>
+							<td><input type="text" class="form-control" id="nmjzxttl" name="nmjzxttl" value="${record.nmjzxttl }"></td>
+							<th>内贸:&nbsp;</th>
+							<td><input type="text" class="form-control" id="nnmjzxttl" name="nnmjzxttl" value="${record.nnmjzxttl }"></td>
+							<th>内贸:&nbsp;</th>
+							<td><input type="text" class="form-control" id="nmtbzzs" name="nmtbzzs" value="${record.nmtbzzs }"></td>
+						</tr>
+					</table>
+					<h2 align="center" style="margin-top:0px;"><font style="font-size:16px;color:#196794;font-family:微软雅黑;font-weight: bold;">集装箱航线航班开辟情况</h2>
+					<table class="apply">
+						<tr>
+							<th></th>
+							<th>本月营运航线总数</th>
+							<th>本月营运航班总数</th>
+							<th>本月新开辟航线数</th>
+							<th>本月停开航线数</th>
+						</tr>
+						<tr>
+							<th>远洋航线</th>
+							<td><input type="text" class="form-control" id="yyhxts" name="yyhxts" value="${record.yyhxts }"></td>
+							<td><input type="text" class="form-control" id="yyhxhbs" name="yyhxhbs" value="${record.yyhxhbs }"></td>
+							<td><input type="text" class="form-control" id="yyxkphxs" name="yyxkphxs" value="${record.yyxkphxs }"></td>
+							<td><input type="text" class="form-control" id="yytkhxs" name="yytkhxs" value="${record.yytkhxs }"></td>
+						</tr>
+						<tr>
+						<th>近洋航线</th>
+							<td><input type="text" class="form-control" id="jyhxts" name="jyhxts" value="${record.jyhxts }"></td>
+							<td><input type="text" class="form-control" id="jyhxhbs" name="jyhxhbs" value="${record.jyhxhbs }"></td>
+							<td><input type="text" class="form-control" id="jyxkphxs" name="jyxkphxs" value="${record.jyxkphxs }"></td>
+							<td><input type="text" class="form-control" id="jytkhxs" name="jytkhxs" value="${record.jytkhxs }"></td>
+						</tr>
+						<tr>
+							<th>外贸内支线</th>
+							<td><input type="text" class="form-control" id="nzxts" name="nzxts" value="${record.nzxts }"></td>
+							<td><input type="text" class="form-control" id="nzxhbs" name="nzxhbs" value="${record.nzxhbs }"></td>
+							<td><input type="text" class="form-control" id="nzxxkphxs" name="nzxxkphxs" value="${record.nzxxkphxs }"></td>
+							<td><input type="text" class="form-control" id="nzxtkhxs" name="nzxtkhxs" value="${record.nzxtkhxs }"></td>
+						</tr>
+						<tr>
+							<th>内贸航线</th>
+							<td><input type="text" class="form-control" id="nmhxts" name="nmhxts" value="${record.nmhxts }"></td>
+							<td><input type="text" class="form-control" id="nmhxhbs" name="nmhxhbs" value="${record.nmhxhbs }"></td>
+							<td><input type="text" class="form-control" id="nmxkphxs" name="nmxkphxs" value="${record.nmxkphxs }"></td>
+							<td><input type="text" class="form-control" id="nmtkhxs" name="nmtkhxs" value="${record.nmtkhxs }"></td>
+						</tr>
+						<tr>
+							<th>填表人:</th>
+							<td><input type="text" class="form-control" id="tbr" readOnly = "true" value="${record.tbr }"></td>
+							<th>联系电话:</th>
+							<td colspan="2"><input type="text" class="form-control" id="lxdh" readOnly = "true" value="${record.lxdh }"></td>
+						</tr>
+					</table>
+				</form>
+				<div id="buttons">
+            	<a class="btn btn-default btn-sm" href="#" onclick="hxhbtj.detail.save()">
+			   		<i class="glyphicon glyphicon-floppy-disk"></i>保存
+			   	</a>
+			   	<a class="btn btn-default btn-sm" href="#" onclick="hxhbtj.detail.submit()">
+					<i class="glyphicon glyphicon-share"></i>提交
+				</a>
+				<a class="btn btn-default btn-sm" href="#"  onclick="hxhbtj.detail.back()">
+					<i class="glyphicon glyphicon-arrow-left"></i>返回
+				</a>
+         		</div>
+			</div>
+		</div>
+	</div>
+</body>
+
+</html>

+ 150 - 0
gkjsjy/trunk/WebContent/WEB-INF/pages/gkyxtjyfx/hxhbtj/hxhbtjView.jsp

@@ -0,0 +1,150 @@
+<%@ 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 () {
+			hxhbtj.main.init();
+			initgkSelect('szgksel','${szgkid }','','showgq','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" >
+			<div class="apply_fill">
+				<table class="apply" cellpadding="0" cellspacing="0">
+					<tr>
+						<th class="right">所在港口:&nbsp;</td>
+						<td>${record.szgkzw }</td>
+						<th class="right">日期:&nbsp;</td>
+						<td>${record.rq }</td>
+					</tr>
+	                	<!-- <tr>
+	                        <td class="right" colspan="6">
+		                       	<a class="btn btn-default btn-sm" href="#" onclick="hxhbtj.main.search()">
+							   		<i class="glyphicon glyphicon-search"></i>查询
+	                        </td>
+	                    </tr> -->
+                </table>
+ 				<h2 align="center" style="margin-top:0px;"><font style="font-size:16px;color:#196794;font-family:微软雅黑;font-weight: bold;">集装箱吞吐量完成情况</h2>
+				<table class="apply" cellpadding="0" cellspacing="0">
+					<tr>
+						<th colspan="2">本月完成量:&nbsp;</th>
+						<td>
+							${record.bywcl }
+						</td>
+						<th colspan="2">本年累计量:&nbsp;</th>
+						<td>
+							${record.bnljl }
+						</td>
+						<th colspan="2">同比增长数(%):&nbsp;</th>
+						<td>
+							${record.tbzzs }
+						</td>
+					</tr>
+					<tr>
+						<th rowspan="2">其中:</th>
+						<th>外贸:&nbsp;</th>
+						<td>${record.wmjzxttl }</td>
+						<th rowspan="2">其中:</th>
+						<th>外贸:&nbsp;</th>
+						<td>${record.nwmjzxttl }</td>
+						<th rowspan="2">其中:</th>
+						<th>外贸:&nbsp;</th>
+						<td>${record.wmtbzzs }</td>
+					</tr>
+					<tr>
+						<th>内贸:&nbsp;</th>
+						<td>${record.nmjzxttl }</td>
+						<th>内贸:&nbsp;</th>
+						<td>${record.nnmjzxttl }</td>
+						<th>内贸:&nbsp;</th>
+						<td>${record.nmtbzzs }</td>
+					</tr>
+				</table>
+				<h2 align="center" style="margin-top:0px;"><font style="font-size:16px;color:#196794;font-family:微软雅黑;font-weight: bold;">集装箱航线航班开辟情况</h2>
+				<table class="apply">
+					<tr>
+						<th></th>
+						<th>本月营运航线总数</th>
+						<th>本月营运航班总数</th>
+						<th>本月新开辟航线数</th>
+						<th>本月停开航线数</th>
+					</tr>
+					<tr>
+						<th>远洋航线</th>
+						<td>${record.yyhxts }</td>
+						<td>${record.yyhxhbs }</td>
+						<td>${record.yyxkphxs }</td>
+						<td>${record.yytkhxs }</td>
+					</tr>
+					<tr>
+					<th>近洋航线</th>
+						<td>${record.jyhxts }</td>
+						<td>${record.jyhxhbs }</td>
+						<td>${record.jyxkphxs }</td>
+						<td>${record.jytkhxs }</td>
+					</tr>
+					<tr>
+						<th>外贸内支线</th>
+						<td>${record.nzxts }</td>
+						<td>${record.nzxhbs }</td>
+						<td>${record.nzxxkphxs }</td>
+						<td>${record.nzxtkhxs }</td>
+					</tr>
+					<tr>
+						<th>内贸航线</th>
+						<td>${record.nmhxts }</td>
+						<td>${record.nmhxhbs }</td>
+						<td>${record.nmxkphxs }</td>
+						<td>${record.nmtkhxs }</td>
+					</tr>
+					<tr>
+						<th>填表人:</th>
+						<td>${record.tbr }</td>
+						<th>联系电话:</th>
+						<td colspan="2">${record.lxdh }</td>
+					</tr>
+				</table>
+				<div  id="buttons">
+					<a class="btn btn-default btn-sm" href="#"  onclick="hxhbtj.main.back()">
+						<i class="glyphicon glyphicon-arrow-left"></i>返回
+					</a>
+         		</div>
+			</div>
+		</div>
+	</div>
+</body>
+
+</html>