SmsSendDetailForm.html 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <!DOCTYPE html>
  2. <html lang="ko"
  3. xmlns:th="http://www.thymeleaf.org">
  4. <!--
  5. *******************************************************************************
  6. * @source : SmsSendDetail.html
  7. * @desc : SMS발송 상세 팝업 Page
  8. *============================================================================
  9. * STYLE24
  10. * Copyright(C) 2020 TSIT, All rights reserved.
  11. *============================================================================
  12. * VER DATE AUTHOR DESCRIPTION
  13. * === =========== ========== =============================================
  14. * 1.0 2021.11.24 smlee 최초 작성
  15. *******************************************************************************
  16. -->
  17. <div class="modalPopup" data-width="1200" id="popupSmsSend">
  18. <div class="panelStyle">
  19. <!-- TITLE -->
  20. <div class="panelTitle">
  21. <h2>SMS발송상세내역</h2>
  22. <button type="button" class="close" onclick="uifnPopupClose('popupSmsSend');"><em class="fa fa-times"></em></button>
  23. </div>
  24. <!-- //TITLE -->
  25. <div class="panelContent">
  26. <table class="frmStyle" aria-describedby="상세폼">
  27. <colgroup>
  28. <col style="width:30%;"/>
  29. <col style="width:70%;"/>
  30. <col/>
  31. </colgroup>
  32. <tbody>
  33. <tr>
  34. <th>발송유형</th>
  35. <td th:text="${smsSendInfo.sendTypeNm}">
  36. </td>
  37. </tr>
  38. <tr>
  39. <th>휴대폰번호</th>
  40. <td th:text="${smsSendInfo.maskingFdestine}">
  41. </td>
  42. </tr>
  43. <tr>
  44. <th>제목</th>
  45. <td th:text="${smsSendInfo.fsubject}">
  46. </td>
  47. </tr>
  48. <tr>
  49. <th>내용</th>
  50. <td> <dd th:utext="*{#strings.replace(smsSendInfo.fmessage, T(System).getProperty('line.separator'), '&lt;br /&gt;')}"></dd>
  51. </td>
  52. </tr>
  53. <tr>
  54. <th>발신번호</th>
  55. <td th:text="${smsSendInfo.fcallBack}">
  56. </td>
  57. </tr>
  58. <tr>
  59. <th>발송시간</th>
  60. <td th:text="${smsSendInfo.fsendDate}">
  61. </td>
  62. </tr>
  63. <tr>
  64. <th>발송결과</th>
  65. <td th:text="*{smsSendInfo.frsltStat =='06'? '성공('+smsSendInfo.frsltDate+')': '실패'}">
  66. </td>
  67. </tr>
  68. <tr>
  69. <th>발송자</th>
  70. <td th:text="*{smsSendInfo.sender =='99999'? '배치':'' }">
  71. </td>
  72. </tr>
  73. </tbody>
  74. </table>
  75. </div>
  76. <!-- //CONTENT -->
  77. </div>
  78. </div>
  79. <script th:inline="javascript">
  80. /*<![CDATA[*/
  81. $(document).ready(function() {
  82. // Create a summernote
  83. //let snOptions = gagaSn.getToolbarOptions();
  84. //gagaSn.createSummernote(snOptions, '#answer');
  85. });
  86. /*]]>*/
  87. </script>
  88. </html>