⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 creditslog.jsp

📁 论坛软件系统亦称电子公告板(BBS)系统
💻 JSP
字号:
<%@ taglib uri="/WEB-INF/c.tld" prefix="c"%>
<%@ page language="java"  pageEncoding="UTF-8"%>
<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>&nbsp;&raquo;&nbsp;积分交易记录</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=creditslog">
				<input type="hidden" name="caction" value="lpp">
				<tr class="altbg2">
					<td width="20%">
						每页显示记录数量
					</td>
					<td width="45%">
						<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=creditslog">
					<input type="hidden" name="caction" value="keyword">
				<tr class="altbg1">
					<td>
						记录全文搜索
					</td>
					<td>
						<input type="text" name="keyword" size="40" value="${keys}">
					</td>
					<td>
						<input class="button" type="submit" value="提 交">
					</td>
				</tr>
				</form>

				<form method="post" action="admincp.jsp?action=creditslog">
					<input type="hidden" name="caction" value="opertar">
					<c:forEach items="${operations}" var="opertion">
						<c:if test="${opertion=='TFR'}">
							<c:set scope="page" var="TFR" value="${opertion}"></c:set>
						</c:if>
						<c:if test="${opertion=='RCV'}">
							<c:set scope="page" var="RCV" value="${opertion}"></c:set>
						</c:if>
						<c:if test="${opertion=='EXC'}">
							<c:set scope="page" var="EXC" value="${opertion}"></c:set>
						</c:if>
						<c:if test="${opertion=='UGP'}">
							<c:set scope="page" var="UGP" value="${opertion}"></c:set>
						</c:if>
						<c:if test="${opertion=='AFD'}">
							<c:set scope="page" var="AFD" value="${opertion}"></c:set>
						</c:if>
					</c:forEach>
				<tr class="altbg2">
					<td>
						动作
					</td>
					<td>
						<input class="checkbox" type="checkbox" name="operations"
							value="TFR" <c:if test="${TFR=='TFR'}">checked</c:if>>
						积分转出 &nbsp;
						<input class="checkbox" type="checkbox" name="operations"
							value="RCV" <c:if test="${RCV=='RCV'}">checked</c:if>>
						积分转入 &nbsp;
						<input class="checkbox" type="checkbox" name="operations"
							value="EXC" <c:if test="${EXC=='EXC'}">checked</c:if>>
						积分兑换 &nbsp;
						<input class="checkbox" type="checkbox" name="operations"
							value="UGP" <c:if test="${UGP=='UGP'}">checked</c:if>>
						公众用户组收费 &nbsp;
						<input class="checkbox" type="checkbox" name="operations"
							value="AFD" <c:if test="${AFD=='AFD'}">checked</c:if>>
						银行现金转入 &nbsp;
					</td>
					<td>
						<input class="button" type="submit" value="提 交">
					</td>
				</tr>
				</form>
			</table>
			<br />
			<br />

			<table width="100%" border="0" cellpadding="0" cellspacing="0"
				class="tableborder">
				<tr class="header">
					<td width="16%">
						用户名
					</td>
					<td width="16%">
						来自/到
					</td>
					<td width="17%">
						时间
					</td>
					<td width="16%">
						支出
					</td>
					<td width="15%">
						收入
					</td>
					<td width="20%">
						动作
					</td>
				</tr>
				<!-- ***************下面显示分页内容************************* -->		
						<c:if test="${logpage.totalSize > lpp}">
							<div class="pages">
								<em>&nbsp;${logpage.totalSize}&nbsp;</em>
								<!-- 如果当前页不是第一页面,且大于10页时,且当前页大于4时则显示1 ... -->
								<c:if test="${logpage.totalPage>10 && logpage.currentPage>=4}">
									<a href="admincp.jsp?action=creditslog&lpp=${lpp}&amp;page=1"
										class="first">1 ...</a>
								</c:if>
								<!-- 如果当前页不是第一页面,则显示<< -->
								<c:if test="${logpage.currentPage != logpage.prePage}">
									<a href="admincp.jsp?action=creditslog&lpp=${lpp}&amp;page=${logpage.prePage}" class="prev">&lsaquo;&lsaquo;</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=creditslog&lpp=${lpp}&amp;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=creditslog&lpp=${lpp}&amp;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=creditslog&lpp=${lpp}&amp;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=creditslog&lpp=${lpp}&amp;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=creditslog&lpp=${lpp}&amp;page=${logpage.nextPage}"
										class="next">&rsaquo;&rsaquo;</a>
								</c:if>
								<!-- 如果超过一定范围则显示... -->
								<c:if test="${logpage.totalPage>10 && (logpage.totalPage-logpage.currentPage)>7}">
									<a
									href="admincp.jsp?action=creditslog&lpp=${lpp}&amp;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=creditslog&lpp=${lpp}&amp;page='+this.value; return false;}" />
								</kbd>
								</c:if>
						</c:if>
			<!-- ******************************分页结束********************************* -->
				<c:forEach items="${creditsloglist}" var="creditslog">
					<tr>
					<td width="16%" class="altbg1">
						${creditslog.username}
					</td>
					<td width="16%" class="altbg2">
						${creditslog.fromname}
					</td>
					<td width="17%" class="altbg1">
						${creditslog.opertarDate}
					</td>
					<td width="16%" class="altbg2">
						${creditslog.sendCrites}&nbsp;${creditslog.sendNum}&nbsp;${creditslog.sendunit}
					</td>
					<td width="15%" class="altbg1">
						${creditslog.receiveCrites}&nbsp;${creditslog.receiverNum}&nbsp;${creditslog.receiveuint}
					</td>
					<td width="20%" class="altbg2">
						${creditslog.opertar}
					</td>
				</tr>
				</c:forEach>
				<tr class="category" align="right">
					<td colspan="6">
						<b>支出合计</b>
						<c:forEach items="${sendext}" var="send" varStatus="index">
						<c:if test="${send!=0}">${creditsMap[index.count]['title']}&nbsp;${send}&nbsp;${creditsMap[index.count]['unit']}&nbsp;</c:if>
						</c:forEach>
						<b>|</b>
						<b>收入合计</b>
						<c:forEach items="${receext}" var="rec" varStatus="index">
						<c:if test="${rec!=0}">${creditsMap[index.count]['title']}&nbsp;${rec}&nbsp;${creditsMap[index.count]['unit']}&nbsp;</c:if>
						</c:forEach>
					</td>
				</tr>
			</table>
			<!-- ***************下面显示分页内容************************* -->		
						<c:if test="${logpage.totalSize > lpp}">
							<div class="pages">
								<em>&nbsp;${logpage.totalSize}&nbsp;</em>
								<!-- 如果当前页不是第一页面,且大于10页时,且当前页大于4时则显示1 ... -->
								<c:if test="${logpage.totalPage>10 && logpage.currentPage>=4}">
									<a href="admincp.jsp?action=creditslog&lpp=${lpp}&amp;page=1"
										class="first">1 ...</a>
								</c:if>
								<!-- 如果当前页不是第一页面,则显示<< -->
								<c:if test="${logpage.currentPage != logpage.prePage}">
									<a href="admincp.jsp?action=creditslog&lpp=${lpp}&amp;page=${logpage.prePage}" class="prev">&lsaquo;&lsaquo;</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=creditslog&lpp=${lpp}&amp;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=creditslog&lpp=${lpp}&amp;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=creditslog&lpp=${lpp}&amp;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=creditslog&lpp=${lpp}&amp;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=creditslog&lpp=${lpp}&amp;page=${logpage.nextPage}"
										class="next">&rsaquo;&rsaquo;</a>
								</c:if>
								<!-- 如果超过一定范围则显示... -->
								<c:if test="${logpage.totalPage>10 && (logpage.totalPage-logpage.currentPage)>7}">
									<a
									href="admincp.jsp?action=creditslog&lpp=${lpp}&amp;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=creditslog&lpp=${lpp}&amp;page='+this.value; return false;}" />
								</kbd>
								</c:if>
						</c:if>
			<!-- ******************************分页结束********************************* -->
	<jsp:include page="../cp_footer.jsp" />

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -