📄 memberlist.jsp.svn-base
字号:
<%@ page language="java" import="com.pure.util.*" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<jsp:include page="../inc/pageHead.jsp" />
<form name="member" method="post" action="<c:url value="/admin/member/memberList.jspx"/>">
<table width="100%" border="0" cellpadding="0" cellspacing="0"
bgcolor="#FFFFFF">
<input type="hidden" name="page" value="${cpage}">
<input type="hidden" name="curAction">
<tr>
<td width="5"> </td>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="30" align="center" class="bigTitle">注册会员管理</td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
</tr>
</table>
<!--数据表主体开始-->
<table width="100%" border="0" cellpadding="2" cellspacing="1"
class="tableData" id="tableData">
<tr>
<th width="5%" align="center"><input type="checkbox" name="chkall" value="on" onclick="CheckAll(this.form)" title="选择/取消" style="cursor:hand"></th>
<th>会员名</th>
<th width="15%">真实姓名</th>
<th width="8%">性 别</th>
<th width="8%">生 日</th>
<th width="15%">身份证</th>
<th width="15%">E-mail</th>
<th width="12%">电 话</th>
<th width="12%">手 机</th>
<th width="12%">操 作</th>
</tr>
<c:if test="${empty memberList}"><script>noData();</script></c:if>
<c:forEach var="memberItem" items="${memberList}">
<tr <%=PureUtil.trBgcolorMouseOverAndMouseOut()%>>
<td align="center"><input type="checkbox" name="id" value="${memberItem.id}" style="cursor:hand"></td>
<td>${memberItem.username}</td>
<td>${memberItem.name}</td>
<td>${memberItem.sex}</td>
<td>${memberItem.birthday}</td>
<td>${memberItem.idcard}</td>
<td>${memberItem.email}</td>
<td>${memberItem.tel}</td>
<td>${memberItem.handset}</td>
<td align="center"><a href="<c:url value="/admin/member/memberList.jspx"/>?curAction=del&id=<c:out value="${memberItem.id}"/>"><img src="<c:url value="/admin/images/del.gif"/>" border="0" alt="删 除"></a> <img src="<c:url value="/admin/images/view.gif"/>" border="0" alt="查看详细信息" onclick="javascript:view(view${memberItem.id});" class="image_button"></td>
</tr>
<tr bgcolor="#F2F9E7" id="view${memberItem.id}" style="display:none">
<td align="center"> </td>
<td colspan="9" height="25">
<table width="100%" border="0" cellpadding="2" cellspacing="1">
<tr>
<td><span class="fieldName2">公司名称:</span>${memberItem.company}</td>
</tr>
<tr>
<td><span class="fieldName2">公司地址:</span>${memberItem.address}</td>
</tr>
<c:if test="${memberItem.loginip!=null}">
<tr>
<td><span class="fieldName2">最近登陆IP:</span>${memberItem.loginip}</td>
</tr>
<tr>
<td><span class="fieldName2">最近登陆时间:</span>${memberItem.logintime}</td>
</tr>
<tr>
<td><span class="fieldName2">登陆总次数:</span>${memberItem.logincount}</td>
</tr>
</c:if>
</table>
</td>
</tr>
</c:forEach>
</table>
<!--数据表主体结束-->
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="35"><img src="../images/del_bt.gif" width="44"
height="20" onmouseover="this.src='../images/del_bt_over.gif'"
onmouseout="this.src='../images/del_bt.gif'" class="image_button"
onclick="action_del(document.forms[0],'是否确定删除选中的数据?','del','','id');"></td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25"><c:out value="${page}" escapeXml="false" /></td>
</tr>
</table>
</td>
<td width="5"> </td>
</tr>
</table>
</form>
<jsp:include page="../inc/pageFoot.jsp" />
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -