123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <%--
- time:2019-04-17 13:26:47
- 刘悦
- --%>
- <%@page language="java" pageEncoding="UTF-8"%>
- <%@include file="/commons/include/html_doctype.html"%>
- <html>
- <head>
- <title>接待管理明细</title>
- <%@include file="/commons/include/get.jsp"%>
- <script type="text/javascript">
- //放置脚本
- </script>
- </head>
- <body>
- <div class="panel">
- <div class="panel-top">
- <div class="tbar-title">
- <span class="tbar-label">接待管理详细信息</span>
- </div>
- <div class="panel-toolbar">
- <div class="toolBar">
- <div class="group">
- <a class="link back" href="list.ht"><span></span>返回</a>
- </div>
- </div>
- </div>
- </div>
- <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <th width="20%">接待名称: </th>
- <td>${reception.FName} </td>
- <th width="20%">接待事由: </th>
- <td>
- <select id="FCause" name="FCause" class="inputText" style="width: 250px;" disabled="disabled" validate="{required:true}">
- <option >---------------请选择------------------</option>
- <option value="0" <c:if test="${reception.FCause ==0}"> selected="selected"</c:if> >参观交流</option>
- <option value="1" <c:if test="${reception.FCause ==1}"> selected="selected"</c:if> >外宾接待</option>
- <option value="2" <c:if test="${reception.FCause ==2}"> selected="selected"</c:if> >领导视察</option>
- <option value="3" <c:if test="${reception.FCause ==3}"> selected="selected"</c:if> >其他</option>
- </select>
- </td>
- </tr>
- <tr>
- <th width="20%">接待对象: </th>
- <td>${reception.FReceptionist}</td>
- <th width="20%">接待日期: </th>
- <td>
- <fmt:formatDate value="${reception.FTime}" pattern="yyyy-MM-dd"/>
- </td>
- </tr>
- <tr>
- <th width="20%">接待部门: </th>
- <td> ${reception.FDeptName} </td>
- <th width="20%">负责人: </th>
- <td> ${reception.FPerson} </td>
- </tr>
- <tr>
- <th width="20%">用车数量: </th>
- <td>${reception.FCarNumber} </td>
- <th width="20%">接待费用: </th>
- <td>${reception.FCost}</td>
- </tr>
- <tr>
- <th width="20%">备注: </th>
- <td colspan="3">
- <textarea id="FRemarks" name="FRemarks" readonly="readonly" validate="{required:false}" style="width: 600px; height:100px;" >${reception.FRemarks}</textarea>
- </td>
-
- </tr>
- </table>
- </div>
- </div>
- </body>
- </html>
|