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

📄 activity_applylist.jsp

📁 论坛软件系统亦称电子公告板(BBS)系统
💻 JSP
字号:
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib uri="/WEB-INF/c.tld" prefix="c"%>
<%@ taglib uri="/WEB-INF/jrun-tag.tld" prefix="jrun"%>
<div class="box">
	<ul class="tabs">
		<li><a href="viewthread.jsp?fid=${thread.fid}&tid=${thread.tid}&do=viewspecialpost&page=${param.page}&rand='+Math.random()" onclick="ajaxget(this.href, 'ajaxspecialpost', 'ajaxspecialpost');doane(event);">主题回复</a></li>
		<li class="current"><a href="misc.jsp?action=activityapplylist&tid=${thread.tid}&rand='+Math.random()" onclick="ajaxget(this.href, 'ajaxspecialpost', 'ajaxspecialpost');doane(event);">已报名会员</a></li>
	</ul>
	<form id="applylistform" method="post" action="misc.jsp?action=activityapplylist&tid=${thread.tid}">
		<input type="hidden" name="operation" value="" />
		<c:choose>
			<c:when test="${activitsapplist!=null}">
				<table summary="Apply List" cellspacing="0" cellpadding="5">
				<thead><tr><c:if test="${thread.authorid==jsprun_uid}"><td>&nbsp;</td></c:if><td>申请者</td><c:if test="${thread.authorid==jsprun_uid}"><td>联系方式</td></c:if><td>留言</td><td>活动花销</td><td>申请时间</td><c:if test="${thread.authorid==jsprun_uid}"><td>状态</td></c:if></tr></thead>
				<c:forEach items="${activitsapplist}" var="applist"><tr>
					<c:if test="${thread.authorid==jsprun_uid}"><td><input class="checkbox" type="checkbox" name="applyidarray[]" value="${applist.applyid}" /></td></c:if>
					<td><a target="_blank" href="space.jsp?uid=${applist.uid}">${applist.username}</a></td>
					<c:if test="${thread.authorid==jsprun_uid}"><td>${applist.contact}</td></c:if>
					<td>${applist.message}</td>
					<td><c:choose><c:when test="${applist.payment>=0}">${applist.payment}元</c:when><c:otherwise>自付</c:otherwise></c:choose></td>
					<td><jrun:showTime timeInt="${applist.dateline}" type="${dateformat} ${timeformat}" timeoffset="${timeoffset}"/></td>
					<c:if test="${thread.authorid==jsprun_uid}"><td><c:choose><c:when test="${applist.verified==1}">允许参加</c:when><c:otherwise>尚未审核</c:otherwise></c:choose></td></c:if>
				</tr></c:forEach>
			</table>
			<c:if test="${thread.authorid==jsprun_uid}">
				<div class="footoperation">
					<label><input class="checkbox header" type="checkbox" name="chkall" onclick="checkall(this.form, 'applyid')" /> 全选</label>&nbsp;&nbsp;
					<button type="submit" value="true" name="applylistsubmit" onclick="$('applylistform').operation.value='delete'">删除</button>&nbsp;&nbsp;
					<button class="submit" type="submit" value="true" name="applylistsubmit">批准</button>
				</div>
			</c:if>
			</c:when>
			<c:otherwise><div class="specialpost">无</div></c:otherwise>
		</c:choose>
	</form>
</div>

⌨️ 快捷键说明

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