mjon_git/src/main/webapp/publish/popup_fax_detail.html
2023-06-12 11:15:02 +09:00

106 lines
3.8 KiB
HTML

<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>팩스 전송결과 상세 발송 내역</title>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/publish/css/reset.css">
<link rel="stylesheet" href="/publish/css/common.css">
<link rel="stylesheet" href="/publish/css/button.css">
<link rel="stylesheet" href="/publish/css/content.css">
<link rel="stylesheet" href="/publish/css/mem.css">
<link rel="stylesheet" href="/publish/css/font.css">
<link rel="stylesheet" href="/publish/css/popupLayer.css">
<link rel="stylesheet" href="/publish/css/estimate.css">
<script src="/publish/js/jquery-3.5.0.js"></script>
<script src="/publish/js/common.js"></script>
<script src="/publish/js/content.js"></script>
<script src="/publish/js/popupLayer.js"></script>
</head>
<body>
<div class="fax_detail_popup">
<div class="popup_heading">
<p>발송내역 상세</p>
<button type="button"><img src="/publish/images/content/layerPopup_close.png" alt="팝업 닫기"></button>
</div>
<div class="tablePrint_wrap" style="width:900px;">
<div class="list_info">
<p>총 발송건수 <span class="c_e40000">171</span></p>
<p class="cf_text c_e40000">* 전송내역은 60일간 보관됩니다.</p>
</div>
<!-- 받는사람(전송건별) - 전체 -->
<div class="tb_wrap">
<table class="tType4">
<colgroup>
<col style="width:15%;">
<col style="width:auto;">
<col style="width:20%;">
<col style="width:13%;">
<col style="width:13%;">
<col style="width:13%;">
<col style="width:50px;">
</colgroup>
<thead>
<tr>
<th>수신번호
<div class="sort_wrap">
<input type="button" class="sort sortBtn" id="sort_reqdate">
</div>
</th>
<th>전송문서 파일명
<div class="sort_wrap">
<input type="button" class="sort sortBtn" id="sort_msgType">
</div>
</th>
<th>문서보기</th>
<th>
문서쪽 수
<div class="sort_wrap">
<input type="button" class="sort sortBtn" id="sort_callTo">
</div>
</th>
<th>
발송금액
<div class="sort_wrap">
<input type="button" class="sort sortBtn" id="sort_callFrom">
</div>
</th>
<th>
전송결과
<div class="sort_wrap">
<input type="button" class="sort sortBtn" id="sort_msgGroupCnt">
</div>
</th>
<th>삭제</th>
</tr>
</thead>
<tbody>
<tr>
<td>0508-928-4250</td>
<td>팩스테스트.hwp</td>
<td>
<button type="button" class="btnType fax_btn"><span class="c_e40000 fwBold">PDF</span>문서</button>
<button type="button" class="btnType tip_btn"><span class="c_19b32b fwBold">TIP</span>이미지</button>
</td>
<td>10</td>
<td>10</td>
<td>
<p class="c_002c9a">정상수신</p>
</td>
<td><button type="button"><img src="/publish/images/content/del_img.png" alt=""></button></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</body>
</html>