view.jsp
2.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>main</title>
<link type="text/css" rel="stylesheet"
href="<%=request.getContextPath()%>/css/admin/style.css" />
<script language="javascript" type="text/javascript"
src="<%=request.getContextPath()%>/js/admin/My97DatePicker/WdatePicker.js"></script>
</head>
<body>
<div class="center-main-ss" style="margin-bottom: 5px;">
<div class="main-title">
<span style="float: left;"><img src="<%=request.getContextPath()%>/images/admin/t_mt01.jpg" /> </span>
<span class="main-tt">查看</span>
<span style="float: right;"><img
src="<%=request.getContextPath()%>/images/admin/t_mt03.jpg" /> </span>
</div>
<div class="main-add">
<table width="90%" border="0" align="center" style="margin: 0;">
<tr>
<td width="15%" align="left" nowrap="nowrap">
姓名:
</td>
<td width="34%" align="left">
${anchorChecked.userName}
</td>
<td width="18%" align="left" nowrap="nowrap">
证件号:
</td>
<td width="33%" align="left">
${anchorChecked.idCard}
</td>
</tr>
<tr>
<td width="18%" align="left" nowrap="nowrap">
联系方式:
</td>
<td colspan="3" align="left">
${anchorChecked.contact}
</td>
<td width="15%" align="left" nowrap="nowrap">
提交时间:
</td>
<td width="34%" align="left">
<fmt:formatDate value="${anchorChecked.createTime}" pattern="yyyy-MM-dd hh:mm:ss"/>
</td>
</tr>
<tr>
<td width="18%" align="left" nowrap="nowrap">
状态:
</td>
<td width="33%" align="left">
<c:if test="${anchorChecked.isChecked == '0'}">未通过</c:if>
<c:if test="${anchorChecked.isChecked == '1'}">通过</c:if>
<c:if test="${anchorChecked.isChecked == '2'}">未审核</c:if>
</td>
<td width="18%" align="left" nowrap="nowrap">
原因:
</td>
<td colspan="3" align="left">
${anchorChecked.reason}
</td>
</tr>
</table>
<table width="98%" border="0" align="center" style="margin: 0;">
<tr>
<td align="center" nowrap="nowrap">
<img src="${anchorChecked.handCard }" >
</td>
<td align="center">
<img src="${anchorChecked.cardFileFront }" >
</td>
<td align="center" nowrap="nowrap">
<img src="${anchorChecked.cardFileBack }" >
</td>
</tr>
<tr>
<td colspan="4" align="center" height="40">
<input type="button" value="返 回" class="admin_again" onClick="javascript:history.go(-1);">
</td>
</tr>
</table>
</div>
</div>
</body>
</html>