1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <%--
- time:2017-04-13 09:17:32
- --%>
- <%@page language="java" pageEncoding="UTF-8"%>
- <%@include file="/commons/include/html_doctype.html"%>
- <html>
- <head>
- <title>SYS_MEETING_ROOM明细</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">SYS_MEETING_ROOM详细信息</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>${meetingRoom.conferenceroom}</td>
- </tr>
- <tr>
- <th width="20%">地点:</th>
- <td>${meetingRoom.location}</td>
- </tr>
- <tr>
- <th width="20%">容纳人数:</th>
- <td>${meetingRoom.capacity}</td>
- </tr>
- <tr>
- <th width="20%">是否有投影:</th>
- <td>
- <c:choose>
- <c:when test="${meetingRoom.isprojection eq 1}">是</c:when>
- <c:otherwise>否</c:otherwise>
- </c:choose>
- </td>
- </tr>
- <tr>
- <th width="20%">联系人电话:</th>
- <td>${meetingRoom.contactnumber}</td>
- </tr>
- <tr>
- <th width="20%">联系人:</th>
- <td>${meetingRoom.contactperson}</td>
- </tr>
- <tr>
- <th width="20%">负责科室:</th>
- <td>${meetingRoom.department}</td>
- </tr>
- </table>
- </div>
- </div>
- </body>
- </html>
|