123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
- <%@ taglib prefix="s" uri="http://www.springframework.org/tags"%>
- <script type="text/javascript" src="<c:url value="/resources/js/mobile/setting/setting.js?version=" /><s:message code="mp.version"/>"></script>
- <div id="page" class="main-content">
- <%-- <div class="row3" id="boxAttr" style="display: none">
- <div class="setting-title"><span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span> 속성 선택</div>
- <div class="setting-container">
- <table class="table" id="attrList">
- <thead>
- <tr>
- <th></th>
- <th>소속</th>
- <th>직무</th>
- <th>업무</th>
- </tr>
- </thead>
- <tbody id="tableAttr">
- <tr>
- <td></td>
- <td>ㅇㅇ</td>
- <td>ㅇㅇ</td>
- <td>ㅇㅇ</td>
- </tr>
- <tr>
- <td></td>
- <td>ㄴㄴ</td>
- <td>ㄴㄴ</td>
- <td>ㄴㄴ</td>
- </tr>
- </tbody>
- </table>
- </div>
- </div> --%>
- <div class="row3" id="boxDept" style="display: none">
- <div class="setting-title"><span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span> 부서 선택</div>
- <div class="setting-container">
- <table class="table" id="deptList">
- <tbody id="tableDept">
- <tr>
- <td><div class="radio3 radio-check">
- <input type="radio" id="radio-1" checked name="deptRadio">
- <label for="radio-1"></label>
- </div>
- </td>
- <td colspan="3">내과</td>
- </tr>
- <tr>
- <td><div class="radio3 radio-check">
- <input type="radio" id="radio-2" checked name="deptRadio">
- <label for="radio-2"></label>
- </div>
- </td>
- <td colspan="3">내과</td>
- </tr>
- </tbody>
- </table>
- <!--
- <div class="radio3 radio-check">
- <input type="radio" id="radio1" checked name="deptRadio">
- <label for="radio1">내과</label>
- </div>
- <div class="radio3 radio-check ">
- <input type="radio" id="radio2" name="deptRadio">
- <label for="radio2">소화기센터</label>
- </div>
- <div class="radio3 radio-check ">
- <input type="radio" id="radio3" name="deptRadio">
- <label for="radio3">암센터</label>
- </div> -->
- </div>
- </div>
- <!-- .row3 end -->
-
- <div class="div-set-button" id="boxSetBtn">
- <div class="col-xs-12 col-sm-12 text-center">
- <button class="btn btn-icon btn-style-1 btn-sm" id="btnSettingSave">저장</button>
- </div>
- </div>
- <!-- .mainContent 종료 -->
- </div>
- <script type="text/javascript">
- $(document).ready(function() {
- headerTitle.text("설정");
- var mplusSetting = new mplus_mobile_setting();
- mplusSetting.init();
-
- $('.setting-container').css('height', $(window).height()-120);
- });
- </script>
|