view.jsp 2.72 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">
						   ${userInfo.name}
						</td>
						<td width="18%" align="left" nowrap="nowrap">
							Me+号:
						</td>
						<td width="33%" align="left">
							${userInfo.id}
						</td>
					</tr>
					<tr>
						<td width="18%" align="left" nowrap="nowrap">
							手机号码:
						</td>
						<td colspan="3" align="left">
							${userInfo.msisdn}
						</td>
						<td width="15%" align="left" nowrap="nowrap">
							最后登录时间:
						</td>
						<td width="34%" align="left">
							<fmt:formatDate value="${userInfo.lastLoginTime}" pattern="yyyy-MM-dd hh:mm:ss"/>
						</td>
					</tr>
					<tr>
						<td width="18%" align="left" nowrap="nowrap">
							注册时间:
						</td>
						<td width="33%" align="left">
							<fmt:formatDate value="${userInfo.createTime}" pattern="yyyy-MM-dd hh:mm:ss"/>
						</td>
						<td width="18%" align="left" nowrap="nowrap">
							常用的IP:
						</td>
						<td colspan="3" align="left">
							${userInfo.lastLoginIp}
						</td>
					</tr>
					<tr>
						<td width="18%" align="left" nowrap="nowrap">
							email地址:
						</td>
						<td width="33%" align="left">
							${userInfo.email}
						</td>
						<td width="18%" align="left" nowrap="nowrap">
							贡献榜列表:
						</td>
						<td colspan="3" align="left">
							${userIdList}
						</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>