|
@@ -48,13 +48,15 @@ $( function(){
|
|
|
$('#summernote').summernote({
|
|
|
height: 300,
|
|
|
toolbar: [
|
|
|
- ['style', ['style']],
|
|
|
+ ['fontsize', ['fontsize']],
|
|
|
['font', ['bold', 'underline', 'clear']],
|
|
|
+ ['height', ['height']],
|
|
|
['color', ['color']],
|
|
|
['para', ['ul', 'ol', 'paragraph']],
|
|
|
['table', ['table']],
|
|
|
['insert', ['link', 'picture']],
|
|
|
['view', ['codeview']],
|
|
|
+
|
|
|
],
|
|
|
});
|
|
|
})
|
|
@@ -109,6 +111,22 @@ function previewModalOpen() {
|
|
|
margin:0;
|
|
|
font-size:14px;
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+.modal-footer{
|
|
|
+ border-top: 1px solid #ddd;
|
|
|
+ height:60px;
|
|
|
+}
|
|
|
+#check-notice{ font-size: 14px;
|
|
|
+ position:absolute;left:10px;
|
|
|
+ border: 1px solid #c9c9c9;
|
|
|
+ background: #FFFFFF;
|
|
|
+ height: 33px;
|
|
|
+ line-height: 33px;
|
|
|
+ padding: 0 10px;
|
|
|
+ margin:0;
|
|
|
+ float: left;
|
|
|
+ }
|
|
|
</style>
|
|
|
</head>
|
|
|
<body>
|
|
@@ -136,7 +154,7 @@ function previewModalOpen() {
|
|
|
<div class="row">
|
|
|
<div class="col-12">
|
|
|
<div class="card">
|
|
|
- <form id="sendForm" action="./new/insert" method="post" enctype="multipart/form-data">
|
|
|
+ <form id="sendForm" action="./new/insert" method="post">
|
|
|
<div class="card-body">
|
|
|
<table class="table mobile-table">
|
|
|
<colgroup>
|
|
@@ -144,21 +162,21 @@ function previewModalOpen() {
|
|
|
<col style="width:80%">
|
|
|
</colgroup>
|
|
|
<tr>
|
|
|
- <th><span class="fix">*</span>제목</th>
|
|
|
+ <th><span class="fix">*</span class="h1">팝업 제목</th>
|
|
|
<td>
|
|
|
<textarea class="form-control" name="" rows="3" placeholder="제목을 입력하세요" id="popupTitle">생활치료센터 진료지원시스템</textarea>
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
- <th><span class="fix">*</span>내용</th>
|
|
|
+ <th><span class="fix">*</span>팝업 내용</th>
|
|
|
<td>
|
|
|
- <textarea id="summernote" class="form-control" rows="10" name="content" placeholder="내용을 입력하세요" maxlength="4000" required></textarea>
|
|
|
+ <textarea id="summernote" class="form-control" rows="10" name="content" placeholder="내용을 입력하세요" maxlength="4000" required>□ 주요 제공 기능<br/></textarea>
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
- <th>게시기간</th>
|
|
|
+ <th><span class="fix">*</span>게시기간</th>
|
|
|
<td>
|
|
|
<div class="row">
|
|
|
<div class="col-2">
|
|
@@ -174,11 +192,11 @@ function previewModalOpen() {
|
|
|
</div>
|
|
|
</div>
|
|
|
</td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
-
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+
|
|
|
<div class="row mt-3">
|
|
|
- <div class="col-12">
|
|
|
+ <div class="col-12">
|
|
|
<div class="text-right">
|
|
|
<button type="button" class="btn btn-outline-secondary w100" onclick="previewModalOpen();">미리보기</button>
|
|
|
<button type="button" class="btn btn-outline-primary w100" onclick="history.back();">취소</button>
|
|
@@ -203,9 +221,10 @@ function previewModalOpen() {
|
|
|
aria-hidden="true">×</span> </button>
|
|
|
</div>
|
|
|
<div class="modal-body popup-modal" id="targetContent" style="overflow:auto;"></div>
|
|
|
+
|
|
|
<div class="modal-footer">
|
|
|
- <button type="button" class="btn btn-outline-primary" data-dismiss="modal">취소</button>
|
|
|
- <button type="button" class="btn btn-primary" onclick="handlePhrData()">등록</button>
|
|
|
+ <label id="check-notice"><input type="checkbox" id="life-center-notice" /> 다시보지않기</label>
|
|
|
+ <button type="button" class="btn btn-outline-primary" data-dismiss="modal">닫기</button>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|