+++ src/main/java/itn/let/cmm/vo/FileInfoVO.java
... | ... | @@ -0,0 +1,32 @@ |
| 1 | +package itn.let.cmm.vo; | |
| 2 | + | |
| 3 | +import java.io.Serializable; | |
| 4 | + | |
| 5 | +import lombok.Getter; | |
| 6 | +import lombok.Setter; | |
| 7 | + | |
| 8 | +/** | |
| 9 | + * | |
| 10 | + * @author : 이호영 | |
| 11 | + * @fileName : FileInfoVO.java | |
| 12 | + * @date : 2025.01.17 | |
| 13 | + * @description : 파일 풀 경로에서 파일명만 가져와 ID 가져올때 사용하는 VO | |
| 14 | + * MjonMsgDetailSentVO 참고 | |
| 15 | + * =========================================================== | |
| 16 | + * DATE AUTHOR NOTE | |
| 17 | + * ----------------------------------------------------------- * | |
| 18 | + * 2025.01.17 이호영 최초 생성 | |
| 19 | + * | |
| 20 | + * | |
| 21 | + * | |
| 22 | + */ | |
| 23 | +@Getter | |
| 24 | +@Setter | |
| 25 | +public class FileInfoVO implements Serializable { | |
| 26 | + | |
| 27 | + private static final long serialVersionUID = 1L; | |
| 28 | + | |
| 29 | + private String atchFileId; // 첨부파일 ID | |
| 30 | + private String fileSn; // 파일 순번 | |
| 31 | + | |
| 32 | +} |
--- src/main/webapp/WEB-INF/jsp/web/msgsent/MsgSentDetailView.jsp
+++ src/main/webapp/WEB-INF/jsp/web/msgsent/MsgSentDetailView.jsp
... | ... | @@ -6,30 +6,6 @@ |
| 6 | 6 |
<%@ page import="itn.com.cmm.LoginVO" %> |
| 7 | 7 |
|
| 8 | 8 |
|
| 9 |
-<style> |
|
| 10 |
- /* #detailPopup {
|
|
| 11 |
- min-width: 400px; |
|
| 12 |
- width: 50%; |
|
| 13 |
- margin: 0 auto; |
|
| 14 |
- } */ |
|
| 15 |
- |
|
| 16 |
- /* Tabulator 헤더 높이 조정 */ |
|
| 17 |
- .tabulator .tabulator-header {
|
|
| 18 |
- height: 36px !important; /* 원하는 높이로 설정 */ |
|
| 19 |
- line-height: 25px; /* 텍스트 정렬을 위해 줄 간격 맞추기 */ |
|
| 20 |
- background-color: #ededed; |
|
| 21 |
- } |
|
| 22 |
- .tabulator .tabulator-col {
|
|
| 23 |
- vertical-align: middle; /* 텍스트를 중앙에 정렬 */ |
|
| 24 |
- } |
|
| 25 |
- |
|
| 26 |
- /* Tabulator 헤더 폰트 크기 조정 */ |
|
| 27 |
- .tabulator .tabulator-header .tabulator-col {
|
|
| 28 |
- font-size: 15px; /* 원하는 폰트 크기로 설정 */ |
|
| 29 |
- font-weight: bold; /* 텍스트를 굵게 설정 (옵션) */ |
|
| 30 |
- text-align: center; /* 텍스트 정렬 */ |
|
| 31 |
- } |
|
| 32 |
-</style> |
|
| 33 | 9 |
<script type="text/javascript"> |
| 34 | 10 |
|
| 35 | 11 |
var $tbDtailList = null; //에러 팝업 영역 |
... | ... | @@ -53,16 +29,14 @@ |
| 53 | 29 |
field: "phone", |
| 54 | 30 |
hozAlign: "center", |
| 55 | 31 |
headerHozAlign: "center", |
| 56 |
- width: 200, |
|
| 57 |
- headerFormatter: () => "<div style='font-size: 18px; font-weight: bold;'>휴대폰</div>" |
|
| 32 |
+ width: 200 |
|
| 58 | 33 |
}, |
| 59 | 34 |
{
|
| 60 | 35 |
title: "상세결과", |
| 61 | 36 |
field: "result", |
| 62 | 37 |
hozAlign: "center", |
| 63 | 38 |
headerHozAlign: "center", |
| 64 |
- width: 180, |
|
| 65 |
- headerFormatter: () => "<div style='font-size: 18px; font-weight: bold;'>상세결과</div>" |
|
| 39 |
+ width: 180 |
|
| 66 | 40 |
} |
| 67 | 41 |
] |
| 68 | 42 |
}); |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?