UMS 응답 저장 및 상세조회
eapim-admin CI / build (push) Has been cancelled

This commit is contained in:
eastargh
2026-09-10 09:56:50 +09:00
parent 266644798f
commit 0b6f273132
5 changed files with 79 additions and 27 deletions
@@ -47,6 +47,8 @@
$('#sentDate').text(data.sentDateFull || '');
// 서버에서 마스킹+escape 된 안전 HTML
$('#messageHtml').html(data.messageHtml || '');
// 응답내용(RESPONSE_DATA) — 원문이므로 text 로만 출력
$('#responseData').text(data.responseData || '');
// PENDING 건만 '실패 처리' 노출 (권한 제어는 buttonControl 이 담당)
if (data.requestStatus !== 'PENDING') {
@@ -142,6 +144,10 @@
<th>메세지 내용</th>
<td colspan="3"><div id="messageHtml" class="msg-detail"></div></td>
</tr>
<tr>
<th>응답내용</th>
<td colspan="3"><div id="responseData" class="msg-detail"></div></td>
</tr>
</table>
</div>
</div>