view.jsp 2.91 KB
<%@ 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>