| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <!DOCTYPE html>
- <html lang="ko"
- xmlns:th="http://www.thymeleaf.org">
- <!--
- *******************************************************************************
- * @source : SmsSendDetail.html
- * @desc : SMS발송 상세 팝업 Page
- *============================================================================
- * STYLE24
- * Copyright(C) 2020 TSIT, All rights reserved.
- *============================================================================
- * VER DATE AUTHOR DESCRIPTION
- * === =========== ========== =============================================
- * 1.0 2021.11.24 smlee 최초 작성
- *******************************************************************************
- -->
- <div class="modalPopup" data-width="1200" id="popupSmsSend">
- <div class="panelStyle">
- <!-- TITLE -->
- <div class="panelTitle">
- <h2>SMS발송상세내역</h2>
- <button type="button" class="close" onclick="uifnPopupClose('popupSmsSend');"><em class="fa fa-times"></em></button>
- </div>
- <!-- //TITLE -->
-
- <div class="panelContent">
-
- <table class="frmStyle" aria-describedby="상세폼">
- <colgroup>
- <col style="width:30%;"/>
- <col style="width:70%;"/>
- <col/>
- </colgroup>
- <tbody>
- <tr>
- <th>발송유형</th>
- <td th:text="${smsSendInfo.sendTypeNm}">
-
- </td>
- </tr>
- <tr>
- <th>휴대폰번호</th>
- <td th:text="${smsSendInfo.maskingFdestine}">
- </td>
- </tr>
- <tr>
- <th>제목</th>
- <td th:text="${smsSendInfo.fsubject}">
-
- </td>
- </tr>
- <tr>
- <th>내용</th>
- <td> <dd th:utext="*{#strings.replace(smsSendInfo.fmessage, T(System).getProperty('line.separator'), '<br />')}"></dd>
- </td>
- </tr>
- <tr>
- <th>발신번호</th>
-
- <td th:text="${smsSendInfo.fcallBack}">
- </td>
- </tr>
- <tr>
- <th>발송시간</th>
-
- <td th:text="${smsSendInfo.fsendDate}">
- </td>
- </tr>
- <tr>
- <th>발송결과</th>
-
- <td th:text="*{smsSendInfo.frsltStat =='06'? '성공('+smsSendInfo.frsltDate+')': '실패'}">
- </td>
- </tr>
- <tr>
- <th>발송자</th>
-
- <td th:text="*{smsSendInfo.sender =='99999'? '배치':'' }">
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- <!-- //CONTENT -->
- </div>
- </div>
- <script th:inline="javascript">
- /*<![CDATA[*/
-
- $(document).ready(function() {
- // Create a summernote
- //let snOptions = gagaSn.getToolbarOptions();
- //gagaSn.createSummernote(snOptions, '#answer');
- });
- /*]]>*/
- </script>
- </html>
|