| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 | <%@ page  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/gkjcxx/jghd/jghddetail.js"></script>	<script type="text/javascript">		$(document).ready(function () {			jghd.detail.szdData='${sz}';			jghd.detail.szgkData='${gk}';			jghd.detail.init();		});		function showgk(){			initgqSelect('gqsel','','','',null,'80%');			initgkSelect('gksel','',$('.szdselectpicker').val(),"showgq",'80%');		}		function showgq(){			initgq('gqsel','',$('.szdselectpicker').val(),$('.gkselectpicker').val());		}	</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><span class="needwrite">*</span>所在地: </th>							<td >								<span id="szdsel">								</span>							</td>							<th><span class="needwrite">*</span>所在港口: </th>							<td >								<span id="gksel">								</span>							</td>						</tr>						<tr>							<th><span class="needwrite">*</span>航道名称: </th>							<td >								<input type="text" class="form-control" name="hdmc" maxlength="100">							</td>							<th>服务港区: </th>							<td >								<span id="gqsel">								</span>							</td>						</tr>						<tr>							<th>航道水深(米): </th>							<td >								<!-- <input type="text" class="form-control" name="hdss"								onkeyup="value=value.replace(/[^\d]/g,'') "								onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\d]/g,''))"> -->								<input type="text" class="form-control" name="hdss" value="${record.hdss}" maxlength="13">							</td>							<th>航道长度(米): </th>							<td >							<!-- 	<input type="text" class="form-control" name="hdcd" 								onkeyup="value=value.replace(/[^\d]/g,'') "								onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\d]/g,''))"> -->								<input type="text" class="form-control" name="hdcd" value="${record.hdcd}" maxlength="13">							</td>						</tr>						<tr>							<th>航道通过能力(万吨/年): </th>							<td >								<!-- <input type="text" class="form-control" name="hdtgnl" 								onkeyup="value=value.replace(/[^\d]/g,'') "								onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\d]/g,''))"> -->								<input type="text" class="form-control" name="hdtgnl" value="${record.hdtgnl}" maxlength="13">							</td>							<th>航道代码: </th>							<td >								<input type="text" class="form-control" name="hddm" maxlength="40">							</td>						</tr>						<tr>							<th>航道起点名称: </th>							<td >								<input type="text" class="form-control" name="hdqdmc" maxlength="40">							</td>							<th>航道讫点名称: </th>							<td >								<input type="text" class="form-control" name="hdqdmm" maxlength="40">							</td>						</tr>						<tr>							<th>航道最大水深(米): </th>							<td >								<!-- <input type="text" class="form-control" name="hdzdss" 								onkeyup="value=value.replace(/[^\d]/g,'') "								onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\d]/g,''))"> -->								<input type="text" class="form-control" name="hdzdss" value="${record.hdzdss}" maxlength="13">							</td>							<th>航道宽度(米): </th>							<td >								<!-- <input type="text" class="form-control" name="hdkd" 								onkeyup="value=value.replace(/[^\d]/g,'') "								onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\d]/g,''))"> -->								<input type="text" class="form-control" name="hdkd" value="${record.hdkd}" maxlength="13">							</td>						</tr>						<tr>							<th>航道有效宽度(米): </th>							<td>								<!-- <input type="text" class="form-control" name="hdyxkd" 								onkeyup="value=value.replace(/[^\d]/g,'') "								onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\d]/g,''))"> -->								<input type="text" class="form-control" name="hdyxkd" value="${record.hdyxkd}" maxlength="13">							</td>							<th></th>							<td></td>						</tr>						<tr>							<th>备注: </th>							<td colspan="4">								<!-- <input type="text" class="form-control" name="bz" maxlength="100"> -->								<textarea  class="form-control" name="bz" onkeyup="limitTextArea(this,100)" style="width:93%;height:80px;"></textarea>							</td>						</tr>					</table>				</form>				<div id="buttons">	            	<a class="btn btn-default btn-sm" href="#" onclick="jghd.detail.save()">				   		<i class="glyphicon glyphicon-floppy-disk"></i>保存				   	</a>				    <a class="btn btn-default btn-sm" href="#"  onclick="jghd.detail.back()">				   		<i class="glyphicon glyphicon-arrow-left"></i>返回				   	</a>          		</div>			</div>		</div>	</div></body></html>
 |