1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <%@ 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();
- iFrameHeight();//自适应高度
- });
- </script>
- </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>姓名 : </th>
- <td >
- <input type="text" class="form-control" name="xm" value="${record.xm }">
- </td>
- <th>身份证号 : </th>
- <td >
- <input type="text" class="form-control" name="sfzh" value="${record.sfzh }">
- </td>
- </tr>
- <tr>
- <th>性别 : </th>
- <td >
- <input type="text" class="form-control" name="xb" value="${record.xb }">
- </td>
- <th>教育程度 : </th>
- <td >
- <input type="text" class="form-control" name="jycd" value="${record.jycd }">
- </td>
- </tr>
- <tr>
- <th>民族 : </th>
- <td >
- <input type="text" class="form-control" name="mz" value="${record.mz }">
- </td>
- <th>岗位 : </th>
- <td >
- <input type="text" class="form-control" name="gw" value="${record.gw }">
- </td>
- </tr>
- <tr>
- <th>联系方式 : </th>
- <td >
- <input type="text" class="form-control" name="lxfs" value="${record.lxfs }">
- </td>
- <th>出生年月 : </th>
- <td >
- <input type="text" class="form-control" name="csny" value="${record.csny }">
- </td>
- </tr>
- <tr>
- <th>所属部门 : </th>
- <td >
- <input type="text" class="form-control" name="ssbm" value="${record.ssbm }">
- </td>
- </tr>
- </table>
- </form>
- <div id="buttons">
- <a class="btn btn-default btn-sm" href="#" onclick="xzglry.detail.save()">
- <i class="glyphicon glyphicon-floppy-disk"></i>
- 保存</a>
- <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>
|