123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <%@page language="java" pageEncoding="UTF-8"%>
- <%@include file="/commons/include/html_doctype.html"%>
- <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
- <c:set var="ctx" value="${pageContext.request.contextPath}"/>
- <script type="text/javascript" src="${ctx}/js/hotent/scriptMgr.js"></script>
- <script type="text/javascript">
- function afterOnload(){
- var afterLoadJs=[
- '${ctx}/js/hotent/formdata.js',
- '${ctx}/js/hotent/subform.js'
- ];
- ScriptMgr.load({
- scripts : afterLoadJs
- });
- }
- </script>
- <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>
|