|
@@ -2,6 +2,48 @@
|
|
|
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
|
|
pageEncoding="UTF-8"%>
|
|
|
|
|
|
+
|
|
|
+<script>
|
|
|
+$( function(){
|
|
|
+// localStorage.clear();
|
|
|
+ var lifeCenterNotice = localStorage.getItem( "notice" );
|
|
|
+
|
|
|
+ if( lifeCenterNotice != "ok" ){
|
|
|
+ alertBox({
|
|
|
+ title : '<span class="" style="">공지<br/>(Notice)</span>',
|
|
|
+ txt : '<div class="text-dark" style="line-height:30px;font-size:16px !important;color:#000;">' +
|
|
|
+ ' <div>아래와 같이 서비스 중지가 예정되어 있으니 참고하시기 바랍니다.</div> (<span class="notice-en">Please note that the service is scheduled to be suspended as follows.</span>)' +
|
|
|
+ ' <div class="mt-4">1. 일자(<span class="notice-en">Date</span>) : <span style="color:blue !important;font-weight:600;">2020. 12. 17 (목/<span class="notice-en">Thursday</span>)</span></div>' +
|
|
|
+ ' <div class="mt-2">2. 시간(<span class="notice-en">Time</span>) : <span style="color:blue !important;font-weight:600;">22:00 ~ 23:00 (1시간 예정/<span class="notice-en">1 hour schedule</span>)</span></div>' +
|
|
|
+ ' <div class="mt-2">3. 목적(<span class="notice-en">Purpose</span>) : <span style="color:blue !important;font-weight:600;">생활치료센터 비대면진료서비스 시스템 인프라 증설 (<span class="notice-en">Residential treatment center Untact Treatment System infrastructure expansion</span>)</span></div>' +
|
|
|
+ ' <div class="mt-4">예정된 시간 안으로 서비스 중지 시간을 최소화 하도록 하겠습니다.</div> (<span class="notice-en">We will minimize service downtime within the scheduled time.</span>)' +
|
|
|
+ '</div>' +
|
|
|
+ '<br/><label id="check-notice"><input type="checkbox" id="life-center-notice" /> 다시보지않기 (<span class="notice-en">Don\'t look again</span>)<label>',
|
|
|
+ callBack : function( result ){
|
|
|
+// alert( result );
|
|
|
+ console.log( $( "#life-center-notice" ).prop( "checked" ) );
|
|
|
+ if( $( "#life-center-notice" ).prop( "checked" ) == true ){
|
|
|
+ localStorage.notice = "ok";
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+});
|
|
|
+</script>
|
|
|
+<style type="text/css">
|
|
|
+#check-notice{ font-size: 14px;
|
|
|
+ margin-top: 20px;
|
|
|
+ position: absolute;
|
|
|
+ border: 1px solid #c9c9c9;
|
|
|
+ background: #FFFFFF;
|
|
|
+ height: 33px;
|
|
|
+ line-height: 33px;
|
|
|
+ bottom: 4px;
|
|
|
+ padding: 0 10px;}
|
|
|
+/* .notice-en{font-size:14px;color:#444;} */
|
|
|
+</style>
|
|
|
+
|
|
|
+
|
|
|
<nav id="sidebar" class="sidebar">
|
|
|
<div class="sidebar-content ">
|
|
|
<a class="sidebar-brand" href="/">
|
|
@@ -36,11 +78,14 @@
|
|
|
<li class="sidebar-item <c:if test='${data._MENUPATH eq "cooperation"}'>active</c:if>">
|
|
|
<a class="sidebar-link" href="/cooperation/list">협력병원 관리</a>
|
|
|
</li>
|
|
|
+
|
|
|
+<%-- <li class="sidebar-item <c:if test='${data._MENUPATH eq "push"}'>active</c:if>"> --%>
|
|
|
+<!-- <a class="sidebar-link" href="/push/list">푸시 서비스 관리</a> -->
|
|
|
+<!-- </li> -->
|
|
|
</c:if>
|
|
|
</ul>
|
|
|
</li>
|
|
|
</ul>
|
|
|
-
|
|
|
<div class="sidebar-bottom d-none d-lg-block">
|
|
|
<div class="media">
|
|
|
<div class="media-body">
|
|
@@ -52,6 +97,5 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
-
|
|
|
</div>
|
|
|
</nav>
|