|
|
@@ -14,59 +14,61 @@
|
|
|
* 1.0 2021.01.21 jsshin 최초 작성
|
|
|
*******************************************************************************
|
|
|
-->
|
|
|
-<div class="modelessPopup" data-width="800">
|
|
|
- <div class="panelStyle">
|
|
|
- <!-- TITLE -->
|
|
|
- <div class="panelTitle">
|
|
|
- <strong>LMS 발송</strong>
|
|
|
- <button type="button" class="close" onclick="uifnPopupClose('popupLmsForm')"><em class="fa fa-times"></em></button>
|
|
|
- </div>
|
|
|
- <!-- //TITLE -->
|
|
|
- <!-- CONTENT -->
|
|
|
- <div class="panelContent">
|
|
|
- <form id="lmsForm" name="lmsForm">
|
|
|
- <table class="frmStyle">
|
|
|
- <colgroup>
|
|
|
- <col style="width:1%"/>
|
|
|
- <col style="width:40%"/>
|
|
|
- </colgroup>
|
|
|
- <tbody>
|
|
|
- <tr >
|
|
|
- <th>수신자번호<em class="required" title="필수"></em></th>
|
|
|
- <td th:if="${maskingCellPhnno == ''}">
|
|
|
- <input type="text" class="w150" name="cellPhnno" data-valid-name="수신번호" required="required" maxlength="13" readonly="readonly"/>
|
|
|
- </td>
|
|
|
- <td th:unless="${maskingCellPhnno == ''}">
|
|
|
- <input type="hidden" name="cellPhnno"/>
|
|
|
- <input type="text" class="w150" name="maskingCellPhnno" readonly="readonly"/>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <th>발신자번호<em class="required" title="필수"></em></th>
|
|
|
- <td>
|
|
|
- <input type="text" class="w150" name="callBack" th:value="${callBack}" maxlength="11" readonly="readonly"/>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <th>메시지<em class="required" title="필수"></em></th>
|
|
|
- <td>
|
|
|
- <textarea class="textareaR4" style="resize: none;" name ="content" ></textarea>
|
|
|
- <span name="count">0</span> / 2000 byte
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- </tbody>
|
|
|
- </table>
|
|
|
- </form>
|
|
|
+
|
|
|
+ <div class="modelessPopup draggable" data-width="800">
|
|
|
+ <div class="panelStyle">
|
|
|
+ <!-- TITLE -->
|
|
|
+ <div class="panelTitle">
|
|
|
+ <strong>LMS 발송</strong>
|
|
|
+ <button type="button" class="close" onclick="uifnPopupClose('popupLmsForm')"><em class="fa fa-times"></em></button>
|
|
|
+ </div>
|
|
|
+ <!-- //TITLE -->
|
|
|
+ <!-- CONTENT -->
|
|
|
+ <div class="panelContent">
|
|
|
+ <form id="lmsForm" name="lmsForm">
|
|
|
+ <table class="frmStyle">
|
|
|
+ <colgroup>
|
|
|
+ <col style="width:1%"/>
|
|
|
+ <col style="width:40%"/>
|
|
|
+ </colgroup>
|
|
|
+ <tbody>
|
|
|
+ <tr >
|
|
|
+ <th>수신자번호<em class="required" title="필수"></em></th>
|
|
|
+ <td th:if="${maskingCellPhnno == ''}">
|
|
|
+ <input type="text" class="w150" name="cellPhnno" data-valid-name="수신번호" required="required" maxlength="13" readonly="readonly"/>
|
|
|
+ </td>
|
|
|
+ <td th:unless="${maskingCellPhnno == ''}">
|
|
|
+ <input type="hidden" name="cellPhnno"/>
|
|
|
+ <input type="text" class="w150" name="maskingCellPhnno" readonly="readonly"/>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th>발신자번호<em class="required" title="필수"></em></th>
|
|
|
+ <td>
|
|
|
+ <input type="text" class="w150" name="callBack" th:value="${callBack}" maxlength="11" readonly="readonly"/>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th>메시지<em class="required" title="필수"></em></th>
|
|
|
+ <td>
|
|
|
+ <textarea class="textareaR4" style="resize: none;" name ="content" ></textarea>
|
|
|
+ <span name="count">0</span> / 2000 byte
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ <ul class="panelBar">
|
|
|
+ <li class="right">
|
|
|
+ <button type="button" class="btn btn-success btn-lg" id="btnSendSms">발송</button>
|
|
|
+ <button type="button" class="btn btn-gray btn-lg" onclick="uifnPopupClose('popupLmsForm')">취소</button>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ <!-- //CONTENT -->
|
|
|
</div>
|
|
|
- <ul class="panelBar">
|
|
|
- <li class="right">
|
|
|
- <button type="button" class="btn btn-success btn-lg" id="btnSendSms">발송</button>
|
|
|
- <button type="button" class="btn btn-gray btn-lg" onclick="uifnPopupClose('popupLmsForm')">취소</button>
|
|
|
- </li>
|
|
|
- </ul>
|
|
|
- <!-- //CONTENT -->
|
|
|
</div>
|
|
|
-</div>
|
|
|
+
|
|
|
<script th:inline="javascript">
|
|
|
/*<![CDATA[*/
|
|
|
const elementCellPhnno = [[${elementCellPhnno}]];
|