setting.jsp 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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 prefix="s" uri="http://www.springframework.org/tags"%>
  4. <script type="text/javascript" src="<c:url value="/resources/js/mobile/setting/setting.js?version=" /><s:message code="mp.version"/>"></script>
  5. <div id="page" class="main-content">
  6. <%-- <div class="row3" id="boxAttr" style="display: none">
  7. <div class="setting-title"><span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>&nbsp;속성 선택</div>
  8. <div class="setting-container">
  9. <table class="table" id="attrList">
  10. <thead>
  11. <tr>
  12. <th></th>
  13. <th>소속</th>
  14. <th>직무</th>
  15. <th>업무</th>
  16. </tr>
  17. </thead>
  18. <tbody id="tableAttr">
  19. <tr>
  20. <td></td>
  21. <td>ㅇㅇ</td>
  22. <td>ㅇㅇ</td>
  23. <td>ㅇㅇ</td>
  24. </tr>
  25. <tr>
  26. <td></td>
  27. <td>ㄴㄴ</td>
  28. <td>ㄴㄴ</td>
  29. <td>ㄴㄴ</td>
  30. </tr>
  31. </tbody>
  32. </table>
  33. </div>
  34. </div> --%>
  35. <div class="row3" id="boxDept" style="display: none">
  36. <div class="setting-title"><span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>&nbsp;부서 선택</div>
  37. <div class="setting-container">
  38. <table class="table" id="deptList">
  39. <tbody id="tableDept">
  40. <tr>
  41. <td><div class="radio3 radio-check">
  42. <input type="radio" id="radio-1" checked name="deptRadio">
  43. <label for="radio-1"></label>
  44. </div>
  45. </td>
  46. <td colspan="3">내과</td>
  47. </tr>
  48. <tr>
  49. <td><div class="radio3 radio-check">
  50. <input type="radio" id="radio-2" checked name="deptRadio">
  51. <label for="radio-2"></label>
  52. </div>
  53. </td>
  54. <td colspan="3">내과</td>
  55. </tr>
  56. </tbody>
  57. </table>
  58. <!--
  59. <div class="radio3 radio-check">
  60. <input type="radio" id="radio1" checked name="deptRadio">
  61. <label for="radio1">내과</label>
  62. </div>
  63. <div class="radio3 radio-check ">
  64. <input type="radio" id="radio2" name="deptRadio">
  65. <label for="radio2">소화기센터</label>
  66. </div>
  67. <div class="radio3 radio-check ">
  68. <input type="radio" id="radio3" name="deptRadio">
  69. <label for="radio3">암센터</label>
  70. </div> -->
  71. </div>
  72. </div>
  73. <!-- .row3 end -->
  74. <div class="div-set-button" id="boxSetBtn">
  75. <div class="col-xs-12 col-sm-12 text-center">
  76. <button class="btn btn-icon btn-style-1 btn-sm" id="btnSettingSave">저장</button>
  77. </div>
  78. </div>
  79. <!-- .mainContent 종료 -->
  80. </div>
  81. <script type="text/javascript">
  82. $(document).ready(function() {
  83. headerTitle.text("설정");
  84. var mplusSetting = new mplus_mobile_setting();
  85. mplusSetting.init();
  86. $('.setting-container').css('height', $(window).height()-120);
  87. });
  88. </script>