sysHysglDetail.jsp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <%@page language="java" pageEncoding="UTF-8"%>
  2. <%@include file="/commons/include/html_doctype.html"%>
  3. <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  4. <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
  5. <c:set var="ctx" value="${pageContext.request.contextPath}"/>
  6. <script type="text/javascript" src="${ctx}/js/hotent/scriptMgr.js"></script>
  7. <script type="text/javascript">
  8. function afterOnload(){
  9. var afterLoadJs=[
  10. '${ctx}/js/hotent/formdata.js',
  11. '${ctx}/js/hotent/subform.js'
  12. ];
  13. ScriptMgr.load({
  14. scripts : afterLoadJs
  15. });
  16. }
  17. </script>
  18. <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
  19. <tr>
  20. <th width="20%">会议室名称:</th>
  21. <td>${sysHysgl.conferenceroom}</td>
  22. </tr>
  23. <tr>
  24. <th width="20%">会议室位置:</th>
  25. <td>${sysHysgl.location}</td>
  26. </tr>
  27. <tr>
  28. <th width="20%">是否有投影:</th>
  29. <td>${sysHysgl.isprojection}</td>
  30. </tr>
  31. <tr>
  32. <th width="20%">负责人:</th>
  33. <td>${sysHysgl.contactperson}</td>
  34. </tr>
  35. <tr>
  36. <th width="20%">负责人电话:</th>
  37. <td>${sysHysgl.contactnumber}</td>
  38. </tr>
  39. </table>