| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 | <%@ 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/gkjsgl/tzjhgl/tzjhgldetail.js"></script>	<script type="text/javascript">		$(document).ready(function () {			tzjhgl.detail.init();		    sfyzjbz();		});		function sfyzjbz(){			$("#bzzj").hide();			sfyzjbz='${record.sfyzjbz}';				if(sfyzjbz==201){			$("#bzzj").show();				}		};	</script></head><body>	<div class="box" >		<div class="box-content" >			<div class="apply_fill"> <form  id="addform" method="post"> 						<table class="apply" cellpadding="0" cellspacing="0">						<tr>							<th>项目名称: </th>							<td colspan="4" >								${record.xmmczw }							</td>						</tr>						<tr>							<th>港口: </th>							<td >								${record.szgkzw }							</td>							<th>港区: </th>							<td >								${record.szgqzw }							</td>						</tr>												<tr>							<th>计划年度: </th>							<td >								${record.jhnd }							</td>							<th>年度计划投资(万元): </th>							<td >								${record.ndjhtz}							</td>						</tr>						<tr>							<th>所属计划: </th>							<td>								${record.xmlbzw }							</td>							<th>是否有资金补助: </th>							<td>								${record.sfyzjbzzw }							</td>						</tr>						<tr id="bzzj">							<th>中央补助资金(万元): </th>							<td>								${record.zybzzj }							</td>							<th>省补助资金(万元): </th>							<td>								${record.sbzzj }							</td>						</tr>					</table></form>					<div  id="buttons">							             <a class="btn btn-default btn-sm" href="#"  onclick="tzjhgl.detail.back()">							   <i class="glyphicon glyphicon-arrow-left"></i> 							            返回</a>          			</div>						</div>		</div></div>	</body></html>
 |