📄 invitelog.jsp
字号:
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib uri="/WEB-INF/c.tld" prefix="c"%>
<%@ taglib uri="/WEB-INF/jrun-tag.tld" prefix="jrun"%>
<jsp:include page="../cp_header.jsp" />
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="guide">
<tr><td><a href="#" onclick="parent.menu.location='admincp.jsp?action=menu'; parent.main.location='admincp.jsp?action=home';return false;">系统设置首页</a> » 邀请注册记录</td></tr>
</table>
<br />
<table width="100%" border="0" cellpadding="0" cellspacing="0"
class="tableborder">
<tr class="header">
<td colspan="3">
邀请注册记录
</td>
</tr>
<form method="post" action="admincp.jsp?action=invitelog">
<input type="hidden" name="caction" value="lpp">
<tr class="altbg2">
<td width="25%">
每页显示记录数量
</td>
<td width="55%">
<input type="text" name="lpp" size="40" maxlength="40" value="${lpp}">
</td>
<td width="20%">
<input class="button" type="submit" value="提 交">
</td>
</tr>
</form>
<form method="post" action="admincp.jsp?action=invitelog">
<input type="hidden" name="caction" value="statuss">
<c:forEach items="${operations}" var="opertion">
<c:if test="${opertion=='1'}">
<c:set scope="page" var="a" value="${opertion}"></c:set>
</c:if>
<c:if test="${opertion=='2'}">
<c:set scope="page" var="b" value="${opertion}"></c:set>
</c:if>
<c:if test="${opertion=='3'}">
<c:set scope="page" var="c" value="${opertion}"></c:set>
</c:if>
<c:if test="${opertion=='4'}">
<c:set scope="page" var="d" value="${opertion}"></c:set>
</c:if>
</c:forEach>
<tr class="altbg2">
<td>
动作
</td>
<td>
<input class="checkbox" type="checkbox" name="status" value="1" <c:if test="${a=='1'}">checked</c:if>>
可使用
<input class="checkbox" type="checkbox" name="status" value="2" <c:if test="${b=='2'}">checked</c:if>>
已使用
<input class="checkbox" type="checkbox" name="status" value="3" <c:if test="${c=='3'}">checked</c:if>>
已发送
<input class="checkbox" type="checkbox" name="status" value="4" <c:if test="${d=='4'}">checked</c:if>>
已过期
</td>
<td>
<input class="button" type="submit" value="提 交">
</td>
</tr>
</form>
</table>
<br />
<table width="100%" border="0" cellpadding="0" cellspacing="0"
class="tableborder">
<form method="post" action="admincp.jsp?action=invitelog">
<input type="hidden" name="caction" value="delinvites">
<tr class="header">
<td width="7%">
<input type="checkbox" name="chkall" class="checkbox"
onclick="checkall(this.form)">删?
</td>
<td width="8%">
购买者
</td>
<td width="15%">
购买时间
</td>
<td width="15%">
到期时间
</td>
<td width="12%">
购买者IP
</td>
<td width="20%">
邀请码
</td>
<td width="18%">
状态
</td>
</tr>
<!-- ***************下面显示分页内容************************* -->
<c:if test="${logpage.totalSize > lpp}">
<div class="pages">
<em> ${logpage.totalSize} </em>
<!-- 如果当前页不是第一页面,且大于10页时,且当前页大于4时则显示1 ... -->
<c:if test="${logpage.totalPage>10 && logpage.currentPage>=4}">
<a href="admincp.jsp?action=invitelog&lpp=${lpp}&page=1"
class="first">1 ...</a>
</c:if>
<!-- 如果当前页不是第一页面,则显示<< -->
<c:if test="${logpage.currentPage != logpage.prePage}">
<a href="admincp.jsp?action=invitelog&lpp=${lpp}&page=${logpage.prePage}" class="prev">‹‹</a>
</c:if>
<c:choose>
<c:when
test="${logpage.totalPage>10 && logpage.currentPage>=4 && logpage.totalPage-(logpage.currentPage-2)>=10}">
<!-- 显示滚动的页码信息 -->
<c:forEach var="num" begin="${logpage.currentPage-2}"
end="${(logpage.currentPage-2)+9}" step="1">
<c:choose>
<c:when test="${logpage.currentPage == num}">
<strong>${logpage.currentPage}</strong>
</c:when>
<c:otherwise>
<a href="admincp.jsp?action=invitelog&lpp=${lpp}&page=${num}">${num}</a>
</c:otherwise>
</c:choose>
</c:forEach>
</c:when>
<c:otherwise>
<c:choose>
<c:when
test="${logpage.totalPage>10 && logpage.currentPage>=4}">
<!-- 显示后半部分信息 -->
<c:forEach var="num" begin="${logpage.totalPage-9}"
end="${logpage.totalPage}" step="1">
<c:choose>
<c:when test="${logpage.currentPage == num}">
<strong>${logpage.currentPage}</strong>
</c:when>
<c:otherwise>
<a href="admincp.jsp?action=invitelog&lpp=${lpp}&page=${num}">${num}</a>
</c:otherwise>
</c:choose>
</c:forEach>
</c:when>
<c:otherwise>
<c:choose>
<c:when test="${logpage.totalPage>10}">
<!-- 显示前半部分值 -->
<c:forEach var="num" begin="1" end="10" step="1">
<c:choose>
<c:when test="${logpage.currentPage == num}">
<strong>${logpage.currentPage}</strong>
</c:when>
<c:otherwise>
<a href="admincp.jsp?action=invitelog&lpp=${lpp}&page=${num}">${num}</a>
</c:otherwise>
</c:choose>
</c:forEach>
</c:when>
<c:otherwise>
<!-- 如果不够10页则显示 -->
<c:forEach var="num" begin="1" end="${logpage.totalPage}"
step="1">
<c:choose>
<c:when test="${logpage.currentPage == num}">
<strong>${logpage.currentPage}</strong>
</c:when>
<c:otherwise>
<a href="admincp.jsp?action=invitelog&lpp=${lpp}&page=${num}">${num}</a>
</c:otherwise>
</c:choose>
</c:forEach>
</c:otherwise>
</c:choose>
</c:otherwise>
</c:choose>
</c:otherwise>
</c:choose>
<!-- 如果当前页不是最后页面,则显示 《 《-->
<c:if test="${logpage.currentPage != logpage.nextPage}">
<a
href="admincp.jsp?action=invitelog&lpp=${lpp}&page=${logpage.nextPage}"
class="next">››</a>
</c:if>
<!-- 如果超过一定范围则显示... -->
<c:if test="${logpage.totalPage>10 && (logpage.totalPage-logpage.currentPage)>7}">
<a
href="admincp.jsp?action=invitelog&lpp=${lpp}&page=${logpage.totalPage}"
class="last">... ${logpage.totalPage}</a>
</c:if>
<!-- 如果页数大于10则显示此框-->
<c:if test="${logpage.totalPage>10}">
<kbd>
<input type="text" name="custompage" size="3"
onkeydown="if(event.keyCode==13) {window.location='admincp.jsp?action=invitelog&lpp=${lpp}&page='+this.value; return false;}" />
</kbd>
</c:if>
</c:if>
<!-- ******************************分页结束********************************* -->
<c:forEach items="${inviteslist}" var="invites">
<tr class="center">
<td width="7%">
<input type="checkbox" name="deleid" class="checkbox" value="${invites.invitecode}">
</td>
<td width="8%">
<a href="space.jsp?action=viewpro&username=<jrun:encoding value="${invites.username}"/>" target="_blank">${invites.username}</a>
</td>
<td width="15%">
${invites.buytime}
</td>
<td width="15%">
${invites.termtime}
</td>
<td width="12%">
${invites.buyIp}
</td>
<td width="20%">
${invites.invitecode}
</td>
<td width="18%">
${invites.status}
</td>
</tr>
</c:forEach>
</table>
<br />
<center>
<input class="button" type="submit" name="invitesubmit" value="提 交">
</center>
</form>
<jsp:include page="../cp_footer.jsp" />
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -