meetingRoomGet.jsp 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <%--
  2. time:2017-04-13 09:17:32
  3. --%>
  4. <%@page language="java" pageEncoding="UTF-8"%>
  5. <%@include file="/commons/include/html_doctype.html"%>
  6. <html>
  7. <head>
  8. <title>SYS_MEETING_ROOM明细</title>
  9. <%@include file="/commons/include/get.jsp"%>
  10. <script type="text/javascript">
  11. //放置脚本
  12. </script>
  13. </head>
  14. <body>
  15. <div class="panel">
  16. <div class="panel-top">
  17. <div class="tbar-title">
  18. <span class="tbar-label">SYS_MEETING_ROOM详细信息</span>
  19. </div>
  20. <div class="panel-toolbar">
  21. <div class="toolBar">
  22. <div class="group">
  23. <a class="link back" href="list.ht"><span></span>返回</a>
  24. </div>
  25. </div>
  26. </div>
  27. </div>
  28. <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
  29. <tr>
  30. <th width="20%">会议室名称:</th>
  31. <td>${meetingRoom.conferenceroom}</td>
  32. </tr>
  33. <tr>
  34. <th width="20%">地点:</th>
  35. <td>${meetingRoom.location}</td>
  36. </tr>
  37. <tr>
  38. <th width="20%">容纳人数:</th>
  39. <td>${meetingRoom.capacity}</td>
  40. </tr>
  41. <tr>
  42. <th width="20%">是否有投影:</th>
  43. <td>
  44. <c:choose>
  45. <c:when test="${meetingRoom.isprojection eq 1}">是</c:when>
  46. <c:otherwise>否</c:otherwise>
  47. </c:choose>
  48. </td>
  49. </tr>
  50. <tr>
  51. <th width="20%">联系人电话:</th>
  52. <td>${meetingRoom.contactnumber}</td>
  53. </tr>
  54. <tr>
  55. <th width="20%">联系人:</th>
  56. <td>${meetingRoom.contactperson}</td>
  57. </tr>
  58. <tr>
  59. <th width="20%">负责科室:</th>
  60. <td>${meetingRoom.department}</td>
  61. </tr>
  62. </table>
  63. </div>
  64. </div>
  65. </body>
  66. </html>