| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 | <%@ 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/gkjcxx/xzdwxxgl/xzglryxx/xzglrydetail.js"></script>	<script type="text/javascript">		$(document).ready(function () {			xzglry.detail.init();		});	</script></head><body>	<div class="box" >		<div class="box-content" >			<div class="apply_fill">					<table class="apply" cellpadding="0" cellspacing="0">						<tr>							<th>姓名 :  </th>							<td >								 ${record.xm }							</td>							<th>身份证号 : </th>							<td >								${record.sfzh }							</td>						</tr>						<tr>							<th>性别 : </th>							<td >								 ${record.xb }							</td>							<th>教育程度 : </th>							<td >								${record.jycd }							</td>						</tr>						<tr>							<th>出生年月 : </th>							<td >								${record.csny }							</td>							<th>所属部门 : </th>							<td >								${record.ssbm }							</td>						</tr>						<tr>							<th>民族 : </th>							<td >								 ${record.mz }							</td>							<th>岗位 : </th>							<td >								${record.gw }							</td>						</tr>						<tr>							<th>联系方式 : </th>							<td >								 ${record.lxfs }							</td>						</tr>					</table>					<div  id="buttons">							             <a class="btn btn-default btn-sm" href="#"  onclick="xzglry.detail.back()">							   <i class="glyphicon glyphicon-arrow-left"></i> 							            返回</a>          			</div>			</div>					</div>	</div></body></html>
 |