bottomListFrame.jsp 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8" %>
  2. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
  3. <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
  4. <%@ page session="false" %>
  5. <!doctype html>
  6. <html lang="ko">
  7. <head>
  8. <link rel="stylesheet" type="text/css" href="${contextRoot }/css/common.css"/>
  9. <link rel="stylesheet" type="text/css" href="${contextRoot }/css/main.css"/>
  10. <link rel="stylesheet" href="${contextRoot }/css/themes/default/style.css"/>
  11. <%@ include file="/WEB-INF/jsp/common.jsp" %>
  12. </head>
  13. <body class="sang">
  14. <div class="bottomMenu" id="bottomMenu">
  15. <div class="bottomBody" id="cvibBottomBody">
  16. <table id="cvibBottomBodyTable">
  17. <thead>
  18. <tr>
  19. <th style="width:5%">센터명</th>
  20. <th style="width:15%">제어기번호</th>
  21. <th style="width:15%">교차로명</th>
  22. <!-- <th style="width:10%">수집일시</th> -->
  23. <th style="width:3%">전이</th>
  24. <th style="width:3%">감응</th>
  25. <th style="width:3%">소등</th>
  26. <th style="width:3%">점멸</th>
  27. <th style="width:3%">수동</th>
  28. <!-- <th style="width:7%">BUS이상</th>
  29. <th style="width:7%">DB이상</th> -->
  30. <th style="width:7%">SCU통신이상</th>
  31. <th style="width:7%">센터통신이상</th>
  32. <th style="width:7%">모순이상</th>
  33. <th style="width:7%">주기카운터</th>
  34. <th style="width:10%">교차로시각</th>
  35. </tr>
  36. </thead>
  37. <tbody id="cvibBottomInfo"></tbody>
  38. </table>
  39. </div>
  40. </div>
  41. <script src="${contextRoot }/js/common/hashmap.js" type="text/javascript"></script>
  42. <script src="${contextRoot }/js/common/common-all.js" type="text/javascript"></script>
  43. <script src="${contextRoot }/js/common/common.js" type="text/javascript"></script>
  44. <script type="text/javascript">
  45. function goPanToInt(intNm, lng, lat) {
  46. if (parent._Level > 3) parent.map.setLevel(1);
  47. parent.map.panTo(new parent.kakao.maps.LatLng(lat, lng));
  48. setTimeout(
  49. function () {
  50. parent.getSignalInfo();
  51. parent.customOverlayFnc(intNm, lng, lat);
  52. }, 100 * 2
  53. );
  54. }
  55. /* function showOnlineList() {
  56. $('#onlineToggle').attr('src','/images/online_on.png');
  57. $('#offlineToggle').attr('src','/images/offline_off.png');
  58. $('#cvibBottomHead').hide();
  59. $('#cvibBottomBody').hide();
  60. $('#bottomHead').show();
  61. $('#bottomBody').show();
  62. } */
  63. function showOfflineList() {
  64. $('#offlineToggle').attr('src', '/images/offline_on.png');
  65. $('#onlineToggle').attr('src', '/images/online_off.png');
  66. $('#bottomHead').hide();
  67. $('#bottomBody').hide();
  68. $('#cvibBottomHead').show();
  69. $('#cvibBottomBody').show();
  70. }
  71. </script>
  72. </body>
  73. </html>