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

📄 meetinfolook.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">
<html:html lang="true">
<head>
	<html:base />

	<title>会议纪要详细信息</title>
	<link href="${pageContext.request.contextPath}/Css_file/oa.css" rel="stylesheet" type="text/css" />

</head>

<body>
	<html:form action="/meetinfo">
		<div class="t">
			<table width=100% border=1 class="tr3 f_one">
				<TR class="h">
					<TH colspan="2">
						<bean:write property="miid" name="meetinfoForm" />
						号会议纪要详细信息:
					</TH>
				</TR>
				<TR class="tr3 f_one">
					<TH>
						会议纪要编号:
					</TH>
					<TH>
						<bean:write property="miid" name="meetinfoForm" />
					</TH>
				</TR>
				<TR class="tr3 f_two">
					<TH>
						会议主题:
					</TH>
					<TH>
						<bean:write property="miinfo" name="meetinfoForm" />
					</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="mepeople" name="meetinfoForm" 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="meetinfoForm">
							<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="mistarttime" name="meetinfoForm" />
					</TH>
				</TR>
				<TR class="tr3 f_one">
					<TH>
						会议纪要主题:
					</TH>
					<TH>
						<bean:write property="minfoname" name="meetinfoForm" />
					</TH>
				</TR>
				<TR class="tr3 f_two">
					<TH>
						会议纪要内容:
					</TH>
					<TH>
						<bean:write property="minfocontent" name="meetinfoForm" />
					</TH>
				</TR>
				<TR class="tr3 f_one">
					<TH>
						会议结束时间:
					</TH>
					<TH>
						<bean:write property="miendtime" name="meetinfoForm" />
					</TH>
				</TR>

				<TR class="tr3 f_two">
					<TH>
						会议状态:
					</TH>
					<TH>
						<logic:equal name="meetinfoForm" property="miisdel" value="0">未开始</logic:equal>
						<logic:equal name="meetinfoForm" property="miisdel" value="1">开会中</logic:equal>
						<logic:equal name="meetinfoForm" property="miisdel" value="2">已完成</logic:equal>
					</TH>
				</TR>
				<TR class="tr3 f_one">
					<TH>
						会议附件:
					</TH>
					<TH>
						<logic:equal name="meetinfoForm" property="maffix" value="0">没有相关附件</logic:equal>
						<logic:equal name="meetinfoForm" property="maffix" value="1">
							<bean:write property="miaffixname" name="meetinfoForm" />
						</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>
</html:html>

⌨️ 快捷键说明

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