📄 check_action.jsp
字号:
<%@ page language="java" pageEncoding="GBK"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>
<html:html lang="true">
<head>
<title>审核俱乐部活动</title>
<link rel="stylesheet" type="text/css"
href="${pageContext.request.contextPath}/image/main.css">
</head>
<body>
<center>
<span style="font-size: 14px;font-weight: bold">审核俱乐部活动</span>
</center>
<br>
<table width="70%" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#D71920">
<tr align="center" valign="middle"><td><br>
<html:form action="/clubAction.do?tag=checkAction" >
<table width="95%" border="1" align="center" cellpadding="0" cellspacing="0">
<tr height="27">
<td width="40%" align="center" id="ttc">活 动 编 号</td>
<td width="60%" id="ttc">
${requestScope.clubActionForm.nid}
</td>
</tr>
<tr height="27">
<td width="40%" align="center" id="ttc">俱 乐 部 名 称</td>
<td width="60%" id="ttc">
${requestScope.clubActionForm.clubname}
</td>
</tr>
<tr height="27">
<td width="40%" align="center" id="ttc">活 动 组 织 者</td>
<td width="60%" id="ttc">
${requestScope.clubActionForm.organiger}
</td>
</tr>
<tr height="27">
<td width="40%" align="center" id="ttc">活 动 时 间</td>
<td width="60%" id="ttc">
${requestScope.clubActionForm.actiontime}
</td>
</tr>
<tr height="27">
<td width="40%" align="center" id="ttc">活 动 地 点</td>
<td width="60%" id="ttc">
${requestScope.clubActionForm.saddress}
</td>
</tr>
<tr height="27">
<td width="40%" align="center" id="ttc">活 动 内 容</td>
<td width="60%" id="ttc">
${requestScope.clubActionForm.content}
</td>
</tr>
<tr height="27">
<td width="40%" align="center" id="ttc">活 动 预 算</td>
<td width="60%" id="ttc">
${requestScope.clubActionForm.budget}
</td>
</tr>
<tr height="27">
<td width="40%" align="center" id="ttc">预 计 参 加 人 数</td>
<td width="60%" id="ttc">
${requestScope.clubActionForm.intendnum}
</td>
</tr>
<tr height="27">
<td width="40%" align="center" id="ttc">是 否 通 过</td>
<td width="60%" id="ttc">
<html:select property="ispass" style="width:50px">
<html:option value="是"></html:option>
<html:option value="否"></html:option>
</html:select>
</td>
</tr>
<tr>
<td width="40%" align="center" id="ttc">审 核 意 见</td>
<td width="60%" id="ttc">
<html:textarea property="opinion" rows="2" cols="30"></html:textarea>
</td>
</tr>
<tr height="30">
<td colspan="2" align="center" id="ttc">
<input type="hidden" name="currentpage" value="${requestScope.map.currentpage}">
<input type="submit" value="确定"/>
<input type="reset" value="重置"/>
<html:hidden property="nid"/>
</td>
</tr>
</table>
</html:form>
</td>
</tr>
</table>
<br>
<center><a href="${pageContext.request.contextPath}/clubAction.do?tag=show¤tpage=${requestScope.map.currentpage}">返回俱乐部活动管理</a></center>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -