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

📄 meetlook.jsp

📁 基于J2EE的办公自动化系统。实现流程定义流程办理等。运用了hibernate+struts+spring框架综合运用的系统。
💻 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"%>


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<head>
	<meta http-equiv="Content-Type" content="text/html; charset=gbk" />
	<title>会议查看信息</title>
	<script src="${pageContext.request.contextPath}/Js_file/Calendar.js"></script>
	<link href="${pageContext.request.contextPath}/Css_file/oa.css" rel="stylesheet" type="text/css" />

</head>

<body>
	<html:form action="/meet">
		<div class="t">
			<table width=100% border=1 class="tr3 f_one">
				<TR class="h">
					<TH colspan="2">
						<bean:write property="mid" name="meetForm" />
						号会议详细信息:
					</TH>
				</TR>
				<TR class="tr3 f_one">
					<TH>
						会议编号:
					</TH>
					<TH>
						<bean:write property="mid" name="meetForm" />
					</TH>
				</TR>
				<TR class="tr3 f_two">
					<TH>
						会议主题:
					</TH>
					<TH>
						<bean:write property="mtitle" name="meetForm" />
					</TH>
				</TR>
				<TR class="tr3 f_one">
					<TH>
						会议室:
					</TH>
					<TH>
						<html:select property="rmid" style="width:120px" disabled="true">
							<html:optionsCollection name="roomlist" label="rname" value="rmid" />
						</html:select>
					</TH>
				</TR>
				<TR class="tr3 f_two">
					<TH>
						会议主持人:
					</TH>
					<TH>
						<html:select property="mpeople" name="meetForm" disabled="true">
							<logic:present name="listuser1" scope="request">
								<logic:iterate id="plan" name="listuser1" scope="request">
									<html:option value="${plan.uno}">${plan.uname}</html:option>
								</logic:iterate>
							</logic:present>
						</html:select>
					</TH>
				</TR>
				<TR class="tr3 f_one">
					<TH>
						会议参与人:
					</TH>
					<TH>
						<html:select property="addmeet" multiple="true" style="width: 120px;height: 100px" name="meetForm">
							<logic:present name="addmeet" scope="request">
								<logic:iterate id="plan" name="addmeet" scope="request">
									<html:option value="${plan.uno}">${plan.uname}</html:option>
								</logic:iterate>
							</logic:present>
						</html:select>
					</TH>
				</TR>
				<TR class="tr3 f_two">
					<TH>
						会议开始时间:
					</TH>
					<TH>
						<bean:write property="mstarttime" name="meetForm" />
					</TH>
				</TR>
				<TR class="tr3 f_one">
					<TH>
						会议结束时间:
					</TH>
					<TH>
						<bean:write property="mendtime" name="meetForm" />
					</TH>
				</TR>
				<TR class="tr3 f_two">
					<TH>
						会议状态:
					</TH>
					<TH>
						<logic:equal name="meetForm" property="mstatus" value="0">未开始</logic:equal>
						<logic:equal name="meetForm" property="mstatus" value="1">开会中</logic:equal>
						<logic:equal name="meetForm" property="mstatus" value="2">已完成</logic:equal>
						<logic:equal name="meetForm" property="mstatus" value="3">已取消</logic:equal>
					</TH>
				</TR>
				<TR class="tr3 f_one">
					<TH>
						会议附件:
					</TH>
					<TH>
						<logic:equal name="meetForm" property="miaffix" value="0">没有相关附件</logic:equal>
						<logic:equal name="meetForm" property="miaffix" value="1">
							<bean:write property="maffixname" name="meetForm" />
						</logic:equal>
					</TH>
				</TR>
			</TABLE>
		</div>
		<div style="text-align:center;margin-bottom:25px;">
			<input type="button" class="btn" value=" 返回 " onclick="history.back();" />
		</div>
	</html:form>
</body>

⌨️ 快捷键说明

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