|
@@ -0,0 +1,48 @@
|
|
|
+<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
|
|
|
+<%@ page language="java" contentType="text/html; charset=UTF-8"
|
|
|
+ pageEncoding="UTF-8"%>
|
|
|
+<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
|
|
|
+<jsp:include page="${data._INCLUDE}/header.jsp"></jsp:include>
|
|
|
+</head>
|
|
|
+<script type="text/javascript">
|
|
|
+function loadApp(){
|
|
|
+ var appUrl = "";
|
|
|
+
|
|
|
+ if ( checkDevice() == "android" ) {
|
|
|
+ appUrl = "Intent://ctc.lemonhc.com#Intent;scheme=mcarectc;package=com.lemonhc.ctc;end";
|
|
|
+ } else if ( checkDevice() == "ios" ) {
|
|
|
+ appUrl = "mcarectc://";
|
|
|
+ } else {
|
|
|
+ alertBox({ txt : '지원하지 않는 단말기입니다.' });
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
+ location.href = appUrl;
|
|
|
+}
|
|
|
+</script>
|
|
|
+<body style="overflow:auto;">
|
|
|
+
|
|
|
+<div id="sub">
|
|
|
+ <div class="container">
|
|
|
+ <div class="header">
|
|
|
+ <div class="previous">
|
|
|
+ <a href="javascript:;" onclick="loadApp();">이전</a>
|
|
|
+ </div>
|
|
|
+ <div class="title">생활치료센터 응급전화</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+
|
|
|
+<div style="text-align:center;font-size:35px;line-height:55px;paddig-bottom:60px;">
|
|
|
+<span>생활치료센터<br/>응급전화<br/><br/><a style="font-weight:600;color:#427adc;" href="tel:${tel}"><c:out value="${tel}"/></a><br/><br/><span style="font-size:30px;">전화번호를 누르면<br/>통화 화면으로 이동합니다.</span></span>
|
|
|
+</div>
|
|
|
+
|
|
|
+<div class="btn_group">
|
|
|
+ <ul>
|
|
|
+ <li style="font-size:0;height:50px;">
|
|
|
+ <button type="button" onclick="loadApp();" class="confirm" style="height:52px;width:100%;display:inline-block;background:#DC5353;"><span class="check">종료하기</span></button>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+</div>
|
|
|
+</body>
|
|
|
+</html>
|