12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <%@page language="java" pageEncoding="UTF-8"%>
- <%@include file="/commons/include/html_doctype.html"%>
- <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
- <c:set var="ctx" value="${pageContext.request.contextPath}"/>
- <script type="text/javascript" src="${ctx}/js/hotent/scriptMgr.js"></script>
- <script type="text/javascript">
- function afterOnload(){
- var afterLoadJs=[
- '${ctx}/js/hotent/formdata.js',
- '${ctx}/js/hotent/subform.js'
- ];
- ScriptMgr.load({
- scripts : afterLoadJs
- });
- }
- </script>
- <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
-
- <tr>
- <th width="20%">人员姓名:</th>
- <td>${syscomparison.fullname}</td>
- </tr>
-
- <tr>
- <th width="20%">身份证号:</th>
- <td>${syscomparison.card}</td>
- </tr>
-
- <tr>
- <th width="20%">单位:</th>
- <td>${syscomparison.unit}</td>
- </tr>
-
- <tr>
- <th width="20%">附件上传:</th>
- <td>${syscomparison.attachment}</td>
- </tr>
-
- <tr>
- <th width="20%">组织ID:</th>
- <td>${syscomparison.orgid}</td>
- </tr>
-
- <tr>
- <th width="20%">当前时间:</th>
- <td>
- <fmt:formatDate value="${syscomparison.ctime}" pattern="yyyy-MM-dd"/>
- </td>
- </tr>
-
- <tr>
- <th width="20%">页数:</th>
- <td>${syscomparison.num}</td>
- </tr>
-
- <tr>
- <th width="20%">KZ1:</th>
- <td>${syscomparison.kz1}</td>
- </tr>
-
- <tr>
- <th width="20%">KZ2:</th>
- <td>${syscomparison.kz2}</td>
- </tr>
-
- <tr>
- <th width="20%">KZ3:</th>
- <td>${syscomparison.kz3}</td>
- </tr>
-
- <tr>
- <th width="20%">KZ4:</th>
- <td>${syscomparison.kz4}</td>
- </tr>
-
- <tr>
- <th width="20%">KZ5:</th>
- <td>${syscomparison.kz5}</td>
- </tr>
-
- <tr>
- <th width="20%">KZ6:</th>
- <td>${syscomparison.kz6}</td>
- </tr>
-
- <tr>
- <th width="20%">KZ7:</th>
- <td>${syscomparison.kz7}</td>
- </tr>
-
- <tr>
- <th width="20%">KZ8:</th>
- <td>${syscomparison.kz8}</td>
- </tr>
- </table>
|