12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <%--
- time:2017-12-07 09:14:11
- --%>
- <%@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>${sysHysgl.conferenceroom}</td>
- </tr>
- <tr>
- <th width="20%">会议室位置:</th>
- <td>${sysHysgl.location}</td>
- </tr>
- <tr>
- <th width="20%">是否有投影:</th>
- <td>${sysHysgl.isprojection}</td>
- </tr>
- <tr>
- <th width="20%">负责人:</th>
- <td>${sysHysgl.contactperson}</td>
- </tr>
- <tr>
- <th width="20%">负责人手机号:</th>
- <td>${sysHysgl.contactnumber}</td>
- </tr>
- </table>
- </div>
- </div>
- </body>
- </html>
|