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

📄 detail_action.jsp

📁 自己制作的联通CRM,支持客户分类,管理,升级,积分管理等等..
💻 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>
  	<br><br>
    <center>
    <span style="font-size: 14px;font-weight: bold">俱乐部活动详细</span>
    </center>
    <br><br>
    <table width="90%" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#D71920">
        <tr align="center" valign="middle"><td><br>
			  <table width="95%" border="1" align="center" cellpadding="0" cellspacing="0" id="ttc">
		
				<tr height="27">
				  	<td width="40%" align="center" id="ttc">活 动 编 号</td>
				    <td width="60%" id="ttc">
				    	&nbsp;&nbsp;&nbsp;${requestScope.clubActionForm.nid}
				    </td>
				</tr>
				
				<tr height="27">
				  	<td width="40%" align="center" id="ttc">俱 乐 部 名 称</td>
				    <td width="60%" id="ttc">
				    	&nbsp;&nbsp;&nbsp;${requestScope.clubActionForm.clubname}
				    </td>
				</tr>
				
				<tr height="27">
				  	<td width="40%" align="center" id="ttc">活 动 组 织 者</td>
				    <td width="60%" id="ttc">
				    	&nbsp;&nbsp;&nbsp;${requestScope.clubActionForm.organiger}
				    </td>
				</tr>
				
				<tr height="27">
				  	<td width="40%" align="center" id="ttc">活 动 时 间</td>
				    <td width="60%" id="ttc">
				    	&nbsp;&nbsp;&nbsp;${requestScope.clubActionForm.actiontime}
				    </td>
				</tr>
				
				<tr height="27">
				  	<td width="40%" align="center" id="ttc">活 动 地 点</td>
				    <td width="60%" id="ttc">
				    	&nbsp;&nbsp;&nbsp;${requestScope.clubActionForm.saddress}
				    </td>
				</tr>
				
				<tr height="27">
				  	<td width="40%" align="center" id="ttc">活 动 内 容</td>
				    <td width="60%" id="ttc">
				    	&nbsp;&nbsp;&nbsp;${requestScope.clubActionForm.content}
				    </td>
				</tr>
				
				<tr height="27">
				  	<td width="40%" align="center" id="ttc">活 动 预 算</td>
				    <td width="60%" id="ttc">
				    	&nbsp;&nbsp;&nbsp;${requestScope.clubActionForm.budget}
				    </td>
				</tr>
				
				<tr height="27">
				  	<td width="40%" align="center" id="ttc">预 计 参 加 人 数</td>
				    <td width="60%" id="ttc">
				    	&nbsp;&nbsp;&nbsp;${requestScope.clubActionForm.intendnum}
				    </td>
				</tr>
				
				<tr height="27">
				  	<td width="40%" align="center" id="ttc">实 际 费 用</td>
				    <td width="60%" id="ttc">
				    	&nbsp;&nbsp;&nbsp;
				    	<logic:equal value="0" property="factcharge" name="clubActionForm"></logic:equal>
				    	<logic:notEqual value="0" property="factcharge" name="clubActionForm">
				    	${requestScope.clubActionForm.factcharge}
				    	</logic:notEqual>
				    </td>
				</tr>
				
				<tr height="27">
				  	<td width="40%" align="center" id="ttc">实 际 参 加 人 数</td>
				    <td width="60%" id="ttc">
				    	&nbsp;&nbsp;&nbsp;
				    	<logic:equal value="0" property="factnum" name="clubActionForm"></logic:equal>
				    	<logic:notEqual value="0" property="factnum" name="clubActionForm">
				    	${requestScope.clubActionForm.factnum}
				    	</logic:notEqual>
				    </td>
				</tr>
				</table>
			  <br>
		</td>
		</tr>
	 </table>
    
    	
    	
  </body>
</html:html>

⌨️ 快捷键说明

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