meetlook.jsp
资源名称:(J2EE)oa.rar [点击查看]
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:4k
源码类别:
Jsp/Servlet
开发平台:
Java
- <%@ 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>