receptionGet.jsp 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <%--
  2. time:2019-04-17 13:26:47
  3. 刘悦
  4. --%>
  5. <%@page language="java" pageEncoding="UTF-8"%>
  6. <%@include file="/commons/include/html_doctype.html"%>
  7. <html>
  8. <head>
  9. <title>接待管理明细</title>
  10. <%@include file="/commons/include/get.jsp"%>
  11. <script type="text/javascript">
  12. //放置脚本
  13. </script>
  14. </head>
  15. <body>
  16. <div class="panel">
  17. <div class="panel-top">
  18. <div class="tbar-title">
  19. <span class="tbar-label">接待管理详细信息</span>
  20. </div>
  21. <div class="panel-toolbar">
  22. <div class="toolBar">
  23. <div class="group">
  24. <a class="link back" href="list.ht"><span></span>返回</a>
  25. </div>
  26. </div>
  27. </div>
  28. </div>
  29. <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
  30. <tr>
  31. <th width="20%">接待名称: </th>
  32. <td>${reception.FName} </td>
  33. <th width="20%">接待事由: </th>
  34. <td>
  35. <select id="FCause" name="FCause" class="inputText" style="width: 250px;" disabled="disabled" validate="{required:true}">
  36. <option >---------------请选择------------------</option>
  37. <option value="0" <c:if test="${reception.FCause ==0}"> selected="selected"</c:if> >参观交流</option>
  38. <option value="1" <c:if test="${reception.FCause ==1}"> selected="selected"</c:if> >外宾接待</option>
  39. <option value="2" <c:if test="${reception.FCause ==2}"> selected="selected"</c:if> >领导视察</option>
  40. <option value="3" <c:if test="${reception.FCause ==3}"> selected="selected"</c:if> >其他</option>
  41. </select>
  42. </td>
  43. </tr>
  44. <tr>
  45. <th width="20%">接待对象: </th>
  46. <td>${reception.FReceptionist}</td>
  47. <th width="20%">接待日期: </th>
  48. <td>
  49. <fmt:formatDate value="${reception.FTime}" pattern="yyyy-MM-dd"/>
  50. </td>
  51. </tr>
  52. <tr>
  53. <th width="20%">接待部门: </th>
  54. <td> ${reception.FDeptName} </td>
  55. <th width="20%">负责人: </th>
  56. <td> ${reception.FPerson} </td>
  57. </tr>
  58. <tr>
  59. <th width="20%">用车数量: </th>
  60. <td>${reception.FCarNumber} </td>
  61. <th width="20%">接待费用: </th>
  62. <td>${reception.FCost}</td>
  63. </tr>
  64. <tr>
  65. <th width="20%">备注: </th>
  66. <td colspan="3">
  67. <textarea id="FRemarks" name="FRemarks" readonly="readonly" validate="{required:false}" style="width: 600px; height:100px;" >${reception.FRemarks}</textarea>
  68. </td>
  69. </tr>
  70. </table>
  71. </div>
  72. </div>
  73. </body>
  74. </html>