Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
4b6e3e4c35
@ -39,19 +39,16 @@
|
|||||||
<c:set var="pageTitleSub">등록</c:set>
|
<c:set var="pageTitleSub">등록</c:set>
|
||||||
</c:if>
|
</c:if>
|
||||||
|
|
||||||
<!-- File Upload :
|
<!-- File Upload : 시작-->
|
||||||
<link rel="stylesheet" href="${pageContext.request.contextPath}/js/fileupload/dropzone.css" />
|
|
||||||
<link rel="stylesheet" href="${pageContext.request.contextPath}/js/fileupload/style.css" />
|
|
||||||
시작-->
|
|
||||||
<script src="${pageContext.request.contextPath}/js/fileupload/dropzone.js"></script>
|
<script src="${pageContext.request.contextPath}/js/fileupload/dropzone.js"></script>
|
||||||
<!-- File Upload : 종료 -->
|
<!-- File Upload : 종료 -->
|
||||||
|
|
||||||
<!-- SmartEditor : 시작 -->
|
<!-- SmartEditor : 시작 -->
|
||||||
<script type="text/javascript" src="${pageContext.request.contextPath}/js/smartEditor/js/service/HuskyEZCreator.js" charset="utf-8"></script>
|
<script src="${pageContext.request.contextPath}/js/smartEditor/js/service/HuskyEZCreator.js"></script>
|
||||||
<!-- SmartEditor : 종료 -->
|
<!-- SmartEditor : 종료 -->
|
||||||
|
|
||||||
|
|
||||||
<script type="text/javaScript">
|
<script>
|
||||||
var myDropzone = null; <% // 파일드롭다운 객체 %>
|
var myDropzone = null; <% // 파일드롭다운 객체 %>
|
||||||
var fileList = new Array(); <% // 업로드된 파일 정보 %>
|
var fileList = new Array(); <% // 업로드된 파일 정보 %>
|
||||||
var delFileList = new Array(); <% // 삭제된 파일 정보 %>
|
var delFileList = new Array(); <% // 삭제된 파일 정보 %>
|
||||||
@ -297,11 +294,10 @@ function fn_downloadFile(attachFileId, fileSn) {
|
|||||||
<div class="community qna">
|
<div class="community qna">
|
||||||
<div class="contents-frame inner-center">
|
<div class="contents-frame inner-center">
|
||||||
<div class="community-write">
|
<div class="community-write">
|
||||||
<legend>Q&A 작성</legend>
|
|
||||||
<p class="required-text"><span>*</span> 표시는 필수 입력 항목입니다.</p>
|
<p class="required-text"><span>*</span> 표시는 필수 입력 항목입니다.</p>
|
||||||
<div class="qna-write-table">
|
|
||||||
<ul>
|
|
||||||
<form name="articleForm" id="articleForm" method="post" onsubmit="return fn_save();">
|
<form name="articleForm" id="articleForm" method="post" onsubmit="return fn_save();">
|
||||||
|
<fieldset>
|
||||||
|
<legend>Q&A 작성</legend>
|
||||||
<input type="hidden" name="pageIndex" id="pageIndex" title="페이지번호" value="${searchArticle.pageIndex}" />
|
<input type="hidden" name="pageIndex" id="pageIndex" title="페이지번호" value="${searchArticle.pageIndex}" />
|
||||||
<input type="hidden" name="pageSize" id="pageSize" title="목록에 보여줄 글개수" value="${searchArticle.pageSize}" />
|
<input type="hidden" name="pageSize" id="pageSize" title="목록에 보여줄 글개수" value="${searchArticle.pageSize}" />
|
||||||
<input type="hidden" name="searchType" id="searchType" title="검색구분" value="${searchArticle.searchType}" />
|
<input type="hidden" name="searchType" id="searchType" title="검색구분" value="${searchArticle.searchType}" />
|
||||||
@ -310,8 +306,8 @@ function fn_downloadFile(attachFileId, fileSn) {
|
|||||||
<input type="hidden" name="fileList" id="fileList" title="첨부파일정보" />
|
<input type="hidden" name="fileList" id="fileList" title="첨부파일정보" />
|
||||||
<input type="hidden" name="delFileList" id="delFileList" title="삭제첨부파일정보" />
|
<input type="hidden" name="delFileList" id="delFileList" title="삭제첨부파일정보" />
|
||||||
<input type="hidden" name="bdAttachFileId" id="bdAttachFileId" value="${searchArticle.bdAttachFileId}" />
|
<input type="hidden" name="bdAttachFileId" id="bdAttachFileId" value="${searchArticle.bdAttachFileId}" />
|
||||||
|
<div class="qna-write-table">
|
||||||
<fieldset>
|
<ul>
|
||||||
<li class="wt-title fl">
|
<li class="wt-title fl">
|
||||||
<div class="w-tit">제목</div>
|
<div class="w-tit">제목</div>
|
||||||
<div class="w-form">
|
<div class="w-form">
|
||||||
@ -320,8 +316,6 @@ function fn_downloadFile(attachFileId, fileSn) {
|
|||||||
</li>
|
</li>
|
||||||
<li class="wt-secret fl check">
|
<li class="wt-secret fl check">
|
||||||
<div class="w-tit">
|
<div class="w-tit">
|
||||||
<input type="checkbox" id="chk-1" name="" value="N">
|
|
||||||
|
|
||||||
<input type="checkbox" name="secretYn" id="secretYn" value="Y"
|
<input type="checkbox" name="secretYn" id="secretYn" value="Y"
|
||||||
<c:if test='${searchArticle.secretYn == "Y" }'> checked </c:if> />
|
<c:if test='${searchArticle.secretYn == "Y" }'> checked </c:if> />
|
||||||
<label for="secretYn">비밀글</label>
|
<label for="secretYn">비밀글</label>
|
||||||
@ -340,9 +334,13 @@ function fn_downloadFile(attachFileId, fileSn) {
|
|||||||
<textarea name="content" id="content" cols="80" rows="10" placeholder="질문하실 내용을 입력하세요.">${searchArticle.content}</textarea>
|
<textarea name="content" id="content" cols="80" rows="10" placeholder="질문하실 내용을 입력하세요.">${searchArticle.content}</textarea>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
<div class="qna-write-table">
|
||||||
|
<ul>
|
||||||
<li class="wt-attachments">
|
<li class="wt-attachments">
|
||||||
<div class="w-tit">첨부파일</div>
|
<div class="w-tit">첨부파일</div>
|
||||||
<div id="dropzone" class="w-form">
|
<div id="dropzone" class="w-form">
|
||||||
@ -354,7 +352,6 @@ function fn_downloadFile(attachFileId, fileSn) {
|
|||||||
<label for="attachFileBtn">※ 이곳에 파일을 끌어다 놓거나(Drag&Drop), 클릭하여 파일을 선택하세요.</label>
|
<label for="attachFileBtn">※ 이곳에 파일을 끌어다 놓거나(Drag&Drop), 클릭하여 파일을 선택하세요.</label>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -375,9 +372,9 @@ function fn_downloadFile(attachFileId, fileSn) {
|
|||||||
<form name="downloadFileForm" id="downloadFileForm"
|
<form name="downloadFileForm" id="downloadFileForm"
|
||||||
action="${pageContext.request.contextPath}/fileupload/downloadAttachFile.do"
|
action="${pageContext.request.contextPath}/fileupload/downloadAttachFile.do"
|
||||||
method="post">
|
method="post">
|
||||||
<input type="hidden" name="bdType" id="bdType" value="ANCMNT" readonly />
|
<input type="hidden" name="bdType" id="bdType" value="ANCMNT" />
|
||||||
<input type="hidden" name="attachFileId" id="attachFileId" value="" readonly />
|
<input type="hidden" name="attachFileId" id="attachFileId" value="" />
|
||||||
<input type="hidden" name="streFileNm" id="streFileNm" value="" readonly />
|
<input type="hidden" name="streFileNm" id="streFileNm" value="" />
|
||||||
<input type="hidden" name="fileSn" id="fileSn" value="" readonly />
|
<input type="hidden" name="fileSn" id="fileSn" value="" />
|
||||||
<input type="hidden" name="orignlFileNm" id="orignlFileNm" value="" readonly />
|
<input type="hidden" name="orignlFileNm" id="orignlFileNm" value="" />
|
||||||
</form>
|
</form>
|
||||||
|
|||||||
@ -33,7 +33,7 @@
|
|||||||
|
|
||||||
<c:set var="pageTitle">공지사항</c:set>
|
<c:set var="pageTitle">공지사항</c:set>
|
||||||
|
|
||||||
<script type="text/javaScript" language="javascript">
|
<script>
|
||||||
|
|
||||||
$( document ).ready(function() {
|
$( document ).ready(function() {
|
||||||
|
|
||||||
@ -181,17 +181,17 @@
|
|||||||
<!-- name="listForm" -->
|
<!-- name="listForm" -->
|
||||||
<form name="articleForm" id="articleForm" method="post" class="list-search" onsubmit="return false;">
|
<form name="articleForm" id="articleForm" method="post" class="list-search" onsubmit="return false;">
|
||||||
<fieldset>
|
<fieldset>
|
||||||
|
<legend>공지 검색</legend>
|
||||||
|
|
||||||
<input type="hidden" name="pageSize" id="pageSize" value="${searchArticle.pageSize }" />
|
<input type="hidden" name="pageSize" id="pageSize" value="${searchArticle.pageSize }" />
|
||||||
<input type="hidden" name="pageIndex" id="pageIndex" title="페이지번호" value="${searchArticle.pageIndex }" />
|
<input type="hidden" name="pageIndex" id="pageIndex" title="페이지번호" value="${searchArticle.pageIndex }" />
|
||||||
<input type="hidden" name="articleId" id="articleId" title="게시글번호" value="" />
|
<input type="hidden" name="articleId" id="articleId" title="게시글번호" value="" />
|
||||||
<input type="hidden" name="articleNo" id="articleNo" value="" title="선택글번호" />
|
<input type="hidden" name="articleNo" id="articleNo" value="" title="선택글번호" />
|
||||||
|
|
||||||
<legend>공지 검색</legend>
|
|
||||||
<div class="left">
|
<div class="left">
|
||||||
<div class="total-count" name="cntResult" id="cntResult"><span class="count">총 <em name="itemsCount" id="itemsCount">0</em>건</span></div>
|
<div class="total-count" id="cntResult"><span class="count">총 <em id="itemsCount">0</em>건</span></div>
|
||||||
<div class="total-count" style="display: none;" name="searchResult" id="searchResult">
|
<div class="total-count" style="display: none;" id="searchResult">
|
||||||
<span class="count"><em name="searchKeywordPrt" id="searchKeywordPrt"></em>에 대한 겸색결과는 총 <em name="searchItemsCount" id="searchItemsCount">4</em>건 입니다.</span>
|
<span class="count"><em id="searchKeywordPrt"></em>에 대한 겸색결과는 총 <em id="searchItemsCount">4</em>건 입니다.</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="right">
|
<div class="right">
|
||||||
|
|||||||
@ -33,7 +33,7 @@
|
|||||||
|
|
||||||
<c:set var="pageTitle">FAQ</c:set>
|
<c:set var="pageTitle">FAQ</c:set>
|
||||||
|
|
||||||
<script type="text/javaScript" language="javascript">
|
<script>
|
||||||
|
|
||||||
$( document ).ready(function() {
|
$( document ).ready(function() {
|
||||||
|
|
||||||
@ -247,15 +247,15 @@ function fn_changeQuestionType(searchQuestionType) {
|
|||||||
<div class="list-search-wrap list-top">
|
<div class="list-search-wrap list-top">
|
||||||
<form name="articleForm" id="articleForm" method="post" onsubmit="return false;">
|
<form name="articleForm" id="articleForm" method="post" onsubmit="return false;">
|
||||||
<input type="hidden" name="pageSize" id="pageSize" value="${searchArticle.pageSize }" />
|
<input type="hidden" name="pageSize" id="pageSize" value="${searchArticle.pageSize }" />
|
||||||
<input type="hidden" name="pageIndex" id="pageIndex" title="페이지번호" value="${searchArticle.pageIndex }" size="5" maxlength="5" />
|
<input type="hidden" name="pageIndex" id="pageIndex" title="페이지번호" value="${searchArticle.pageIndex }" />
|
||||||
<input type="hidden" name="articleId" id="articleId" title="게시글번호" value="" readonly />
|
<input type="hidden" name="articleId" id="articleId" title="게시글번호" value="" />
|
||||||
<input type="hidden" name="searchQuestionType" id="searchQuestionType" value="" title="유형코드" />
|
<input type="hidden" name="searchQuestionType" id="searchQuestionType" value="" title="유형코드" />
|
||||||
<input type="hidden" name="articleNo" id="articleNo" value="" title="선택글번호" />
|
<input type="hidden" name="articleNo" id="articleNo" value="" title="선택글번호" />
|
||||||
|
|
||||||
<div class="left">
|
<div class="left">
|
||||||
<div class="total-count" name="cntResult" id="cntResult"><span class="count">총 <em name="itemsCount" id="itemsCount">0</em>건</span></div>
|
<div class="total-count" id="cntResult"><span class="count">총 <em id="itemsCount">0</em>건</span></div>
|
||||||
<div class="total-count" style="display: none;" name="searchResult" id="searchResult">
|
<div class="total-count" style="display: none;" id="searchResult">
|
||||||
<span class="count"><em name="searchKeywordPrt" id="searchKeywordPrt"></em>에 대한 겸색결과는 총 <em name="searchItemsCount" id="searchItemsCount">4</em>건 입니다.</span>
|
<span class="count"><em id="searchKeywordPrt"></em>에 대한 겸색결과는 총 <em id="searchItemsCount">4</em>건 입니다.</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -306,10 +306,10 @@ function fn_changeQuestionType(searchQuestionType) {
|
|||||||
<form name="downloadFileForm" id="downloadFileForm"
|
<form name="downloadFileForm" id="downloadFileForm"
|
||||||
action="${pageContext.request.contextPath}/fileupload/downloadAttachFile.do"
|
action="${pageContext.request.contextPath}/fileupload/downloadAttachFile.do"
|
||||||
method="post">
|
method="post">
|
||||||
<input type="hidden" name="bdType" id="bdType" value="FAQ" readonly />
|
<input type="hidden" name="bdType" id="bdType" value="FAQ" />
|
||||||
<input type="hidden" name="attachFileId" id="attachFileId" value="" readonly />
|
<input type="hidden" name="attachFileId" id="attachFileId" value="" />
|
||||||
<input type="hidden" name="streFileNm" id="streFileNm" value="" readonly />
|
<input type="hidden" name="streFileNm" id="streFileNm" value="" />
|
||||||
<input type="hidden" name="fileSn" id="fileSn" value="" readonly />
|
<input type="hidden" name="fileSn" id="fileSn" value="" />
|
||||||
<input type="hidden" name="orignlFileNm" id="orignlFileNm" value="" readonly />
|
<input type="hidden" name="orignlFileNm" id="orignlFileNm" value="" />
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
|||||||
@ -34,7 +34,7 @@
|
|||||||
|
|
||||||
<c:set var="pageTitle">Q&A</c:set>
|
<c:set var="pageTitle">Q&A</c:set>
|
||||||
|
|
||||||
<script type="text/javaScript" language="javascript">
|
<script>
|
||||||
|
|
||||||
$( document ).ready(function() {
|
$( document ).ready(function() {
|
||||||
|
|
||||||
@ -223,9 +223,9 @@
|
|||||||
<div class="list-search-wrap list-top">
|
<div class="list-search-wrap list-top">
|
||||||
<form name="articleForm" id="articleForm" method="post" onsubmit="return false;">
|
<form name="articleForm" id="articleForm" method="post" onsubmit="return false;">
|
||||||
<div class="left">
|
<div class="left">
|
||||||
<div class="total-count" name="cntResult" id="cntResult"><span class="count">총 <em name="itemsCount" id="itemsCount">0</em>건</span></div>
|
<div class="total-count" id="cntResult"><span class="count">총 <em id="itemsCount">0</em>건</span></div>
|
||||||
<div class="total-count" style="display: none;" name="searchResult" id="searchResult">
|
<div class="total-count" style="display: none;" id="searchResult">
|
||||||
<span class="count"><em name="searchKeywordPrt" id="searchKeywordPrt"></em>에 대한 겸색결과는 총 <em name="searchItemsCount" id="searchItemsCount">4</em>건 입니다.</span>
|
<span class="count"><em id="searchKeywordPrt"></em>에 대한 겸색결과는 총 <em id="searchItemsCount">4</em>건 입니다.</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -248,10 +248,10 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<input type="hidden" name="pageSize" id="pageSize" value="${searchArticle.pageSize }" />
|
<input type="hidden" name="pageSize" id="pageSize" value="${searchArticle.pageSize }" />
|
||||||
<input type="hidden" name="pageIndex" id="pageIndex" title="페이지번호" value="${searchArticle.pageIndex }" size="5" maxlength="5" />
|
<input type="hidden" name="pageIndex" id="pageIndex" title="페이지번호" value="${searchArticle.pageIndex }" />
|
||||||
<input type="hidden" name="articleId" id="articleId" title="게시글번호" value="" readonly />
|
<input type="hidden" name="articleId" id="articleId" title="게시글번호" value="" />
|
||||||
<input type="hidden" name="searchQuestionType" id="searchQuestionType" value="" title="유형코드" readonly />
|
<input type="hidden" name="searchQuestionType" id="searchQuestionType" value="" title="유형코드" />
|
||||||
<input type="hidden" name="articleNo" id="articleNo" value="" title="선택글번호" readonly />
|
<input type="hidden" name="articleNo" id="articleNo" value="" title="선택글번호" />
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -33,7 +33,7 @@
|
|||||||
|
|
||||||
<c:set var="pageTitle">공지사항 - 상세조회</c:set>
|
<c:set var="pageTitle">공지사항 - 상세조회</c:set>
|
||||||
|
|
||||||
<script type="text/javaScript" language="javascript">
|
<script>
|
||||||
|
|
||||||
$( document ).ready(function() {
|
$( document ).ready(function() {
|
||||||
|
|
||||||
@ -144,21 +144,21 @@ function fn_downloadFile(attachFileId, fileSn) {
|
|||||||
<form name="articleForm" id="articleForm"
|
<form name="articleForm" id="articleForm"
|
||||||
action="${pageContext.request.contextPath}/bbs/listAncmnts.do"
|
action="${pageContext.request.contextPath}/bbs/listAncmnts.do"
|
||||||
method="post">
|
method="post">
|
||||||
<input type="hidden" name="pageIndex" id="pageIndex" title="페이지번호" value="${searchArticle.pageIndex}" readonly />
|
<input type="hidden" name="pageIndex" id="pageIndex" title="페이지번호" value="${searchArticle.pageIndex}" />
|
||||||
<input type="hidden" name="pageSize" id="pageSize" title="목록에 보여줄 글개수" value="${searchArticle.pageSize}" readonly />
|
<input type="hidden" name="pageSize" id="pageSize" title="목록에 보여줄 글개수" value="${searchArticle.pageSize}" />
|
||||||
<input type="hidden" name="searchType" id="searchType" title="검색구분" value="${searchArticle.searchType}" readonly />
|
<input type="hidden" name="searchType" id="searchType" title="검색구분" value="${searchArticle.searchType}" />
|
||||||
<input type="hidden" name="searchKeyword" id="searchKeyword" title="검색어" value="${searchArticle.searchKeyword}" readonly />
|
<input type="hidden" name="searchKeyword" id="searchKeyword" title="검색어" value="${searchArticle.searchKeyword}" />
|
||||||
<input type="hidden" name="articleId" id="articleId" title="선택글번호" value="${searchArticle.articleId}" readonly />
|
<input type="hidden" name="articleId" id="articleId" title="선택글번호" value="${searchArticle.articleId}" />
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<!-- 첨부파일 다운로드용 폼 -->
|
<!-- 첨부파일 다운로드용 폼 -->
|
||||||
<form name="downloadFileForm" id="downloadFileForm"
|
<form name="downloadFileForm" id="downloadFileForm"
|
||||||
action="${pageContext.request.contextPath}/fileupload/downloadAttachFile.do"
|
action="${pageContext.request.contextPath}/fileupload/downloadAttachFile.do"
|
||||||
method="post">
|
method="post">
|
||||||
<input type="hidden" name="bdType" id="bdType" value="ANCMNT" readonly />
|
<input type="hidden" name="bdType" id="bdType" value="ANCMNT" />
|
||||||
<input type="hidden" name="attachFileId" id="attachFileId" value="" readonly />
|
<input type="hidden" name="attachFileId" id="attachFileId" value="" />
|
||||||
<input type="hidden" name="streFileNm" id="streFileNm" value="" readonly />
|
<input type="hidden" name="streFileNm" id="streFileNm" value="" />
|
||||||
<input type="hidden" name="fileSn" id="fileSn" value="" readonly />
|
<input type="hidden" name="fileSn" id="fileSn" value="" />
|
||||||
<input type="hidden" name="orignlFileNm" id="orignlFileNm" value="" readonly />
|
<input type="hidden" name="orignlFileNm" id="orignlFileNm" value="" />
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
@ -33,7 +33,7 @@
|
|||||||
|
|
||||||
<c:set var="pageTitle">Q&A</c:set>
|
<c:set var="pageTitle">Q&A</c:set>
|
||||||
|
|
||||||
<script type="text/javaScript" language="javascript">
|
<script>
|
||||||
|
|
||||||
$( document ).ready(function() {
|
$( document ).ready(function() {
|
||||||
|
|
||||||
@ -106,16 +106,14 @@ function fn_downloadFile(attachFileId, fileSn) {
|
|||||||
<div class="view-tit">
|
<div class="view-tit">
|
||||||
<h2>
|
<h2>
|
||||||
<span class="type">
|
<span class="type">
|
||||||
<c:if test='${article.secretYn == "Y"}'></c:if>
|
|
||||||
|
|
||||||
<c:if test='${article.answerYn == "Y"}'><span>답변완료</span></c:if>
|
<c:if test='${article.answerYn == "Y"}'><span>답변완료</span></c:if>
|
||||||
|
|
||||||
|
|
||||||
</span>
|
</span>
|
||||||
${article.title}<span>
|
${article.title}
|
||||||
|
<span>
|
||||||
<c:if test='${article.secretYn == "Y"}'>
|
<c:if test='${article.secretYn == "Y"}'>
|
||||||
<img src="/images/icon/icon-secret.png" alt="자물쇠 아이콘"></span>
|
<img src="/images/icon/icon-secret.png" alt="자물쇠 아이콘">
|
||||||
</c:if>
|
</c:if>
|
||||||
|
</span>
|
||||||
</h2>
|
</h2>
|
||||||
<span class="v-info">
|
<span class="v-info">
|
||||||
<em>${article.regNm }</em>
|
<em>${article.regNm }</em>
|
||||||
@ -141,9 +139,7 @@ function fn_downloadFile(attachFileId, fileSn) {
|
|||||||
<div class="view-body">
|
<div class="view-body">
|
||||||
<div class="view-con">
|
<div class="view-con">
|
||||||
<div class="view-txt">
|
<div class="view-txt">
|
||||||
<p>
|
<p>${article.unescapedContent}</p>
|
||||||
${article.unescapedContent}
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<c:if test='${article.answerYn == "Y"}'>
|
<c:if test='${article.answerYn == "Y"}'>
|
||||||
@ -153,9 +149,7 @@ function fn_downloadFile(attachFileId, fileSn) {
|
|||||||
<span class="right">${article.modDd }</span>
|
<span class="right">${article.modDd }</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="answer-con">
|
<div class="answer-con">
|
||||||
<p>
|
<p>${article.answer}</p>
|
||||||
${article.answer}
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</c:if>
|
</c:if>
|
||||||
@ -187,11 +181,11 @@ function fn_downloadFile(attachFileId, fileSn) {
|
|||||||
<form name="articleForm" id="articleForm"
|
<form name="articleForm" id="articleForm"
|
||||||
action="${pageContext.request.contextPath}/bbs/listQnas.do"
|
action="${pageContext.request.contextPath}/bbs/listQnas.do"
|
||||||
method="post">
|
method="post">
|
||||||
<input type="hidden" name="pageIndex" id="pageIndex" title="페이지번호" value="${searchArticle.pageIndex}" readonly />
|
<input type="hidden" name="pageIndex" id="pageIndex" title="페이지번호" value="${searchArticle.pageIndex}" />
|
||||||
<input type="hidden" name="pageSize" id="pageSize" title="목록에 보여줄 글개수" value="${searchArticle.pageSize}" readonly />
|
<input type="hidden" name="pageSize" id="pageSize" title="목록에 보여줄 글개수" value="${searchArticle.pageSize}" />
|
||||||
<input type="hidden" name="searchType" id="searchType" title="검색구분" value="${searchArticle.searchType}" readonly />
|
<input type="hidden" name="searchType" id="searchType" title="검색구분" value="${searchArticle.searchType}" />
|
||||||
<input type="hidden" name="searchKeyword" id="searchKeyword" title="검색어" value="${searchArticle.searchKeyword}" readonly />
|
<input type="hidden" name="searchKeyword" id="searchKeyword" title="검색어" value="${searchArticle.searchKeyword}" />
|
||||||
<input type="hidden" name="articleId" id="articleId" title="선택글번호" value="${searchArticle.articleId}" readonly />
|
<input type="hidden" name="articleId" id="articleId" title="선택글번호" value="${searchArticle.articleId}" />
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<!-- 첨부파일 다운로드용 폼 -->
|
<!-- 첨부파일 다운로드용 폼 -->
|
||||||
|
|||||||
@ -32,7 +32,7 @@
|
|||||||
<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %>
|
<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %>
|
||||||
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags"%>
|
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags"%>
|
||||||
|
|
||||||
<script type="text/javaScript" language="javascript">
|
<script>
|
||||||
var BTN_APP_PREFIX = "대출신청/예약";
|
var BTN_APP_PREFIX = "대출신청/예약";
|
||||||
|
|
||||||
$( document ).ready(function() {
|
$( document ).ready(function() {
|
||||||
@ -40,7 +40,7 @@ $( document ).ready(function() {
|
|||||||
$("[id^=chk_item_]").prop("disabled", true);
|
$("[id^=chk_item_]").prop("disabled", true);
|
||||||
$("[id^=chk_all_]").prop("disabled", true);
|
$("[id^=chk_all_]").prop("disabled", true);
|
||||||
|
|
||||||
$("[id=selMngOrgCd]").change(function(obj) {
|
$("[name=selMngOrgCd]").change(function(obj) {
|
||||||
var checked = $(this).prop("checked");
|
var checked = $(this).prop("checked");
|
||||||
var mngOrgCd = $(this).val();
|
var mngOrgCd = $(this).val();
|
||||||
|
|
||||||
@ -280,7 +280,7 @@ $(document).ready(function() {
|
|||||||
|
|
||||||
<c:set var="mngOrgCdCnt" value="0" />
|
<c:set var="mngOrgCdCnt" value="0" />
|
||||||
<!-- 문화원 시작 -->
|
<!-- 문화원 시작 -->
|
||||||
<h3><label for="selMngOrgCd"><input type="radio" id="selMngOrgCd" name="selMngOrgCd" value="${cart.mngOrgCd}"><span id="_${cart.mngOrgCd}_nm">${cart.mngOrgNm }</span> (<span class="count" id="_${cart.mngOrgCd}_cnt"></span>)</label></h3>
|
<h3><label for="selMngOrgCd_${cart.mngOrgCd}"><input type="radio" id="selMngOrgCd_${cart.mngOrgCd}" name="selMngOrgCd" value="${cart.mngOrgCd}"><span id="_${cart.mngOrgCd}_nm">${cart.mngOrgNm }</span> (<span class="count" id="_${cart.mngOrgCd}_cnt"></span>)</label></h3>
|
||||||
<div class="list-cart">
|
<div class="list-cart">
|
||||||
<div class="list t-tit-line">
|
<div class="list t-tit-line">
|
||||||
<div class="t-chk"><input type="checkbox" id="chk_all_${cart.mngOrgCd }" name="chk_all_${cart.mngOrgCd }" onclick="fn_selectAll('${cart.mngOrgCd}')"><label for="chk_all_${cart.mngOrgCd }" style="display:none">전체자료선택</label></div>
|
<div class="t-chk"><input type="checkbox" id="chk_all_${cart.mngOrgCd }" name="chk_all_${cart.mngOrgCd }" onclick="fn_selectAll('${cart.mngOrgCd}')"><label for="chk_all_${cart.mngOrgCd }" style="display:none">전체자료선택</label></div>
|
||||||
@ -381,18 +381,18 @@ $(document).ready(function() {
|
|||||||
</div>
|
</div>
|
||||||
<div class="right">
|
<div class="right">
|
||||||
<c:if test='${cartTypeCd == "1"}'>
|
<c:if test='${cartTypeCd == "1"}'>
|
||||||
<button type="button" name="btnApp" id="btnApp" class="btn btn-color" onclick="fn_appRent()">대출신청/예약 <span id="appCnt" name="appCnt" class="count">(0)</span></button>
|
<button type="button" name="btnApp" id="btnApp" class="btn btn-color" onclick="fn_appRent()">대출신청/예약 <span id="appCnt" class="count">(0)</span></button>
|
||||||
<script>BTN_APP_PREFIX = "대출신청/예약"; </script>
|
<script>BTN_APP_PREFIX = "대출신청/예약"; </script>
|
||||||
</c:if>
|
</c:if>
|
||||||
<c:if test='${cartTypeCd == "2"}'>
|
<c:if test='${cartTypeCd == "2"}'>
|
||||||
<button type="button" name="btnApp" id="btnApp" class="btn btn-color" onclick="fn_appVisit()">열람신청 <span id="appCnt" name="appCnt" class="count">(0)</span></button>
|
<button type="button" name="btnApp" id="btnApp" class="btn btn-color" onclick="fn_appVisit()">열람신청 <span id="appCnt" class="count">(0)</span></button>
|
||||||
<script>BTN_APP_PREFIX = "열람신청"; </script>
|
<script>BTN_APP_PREFIX = "열람신청"; </script>
|
||||||
</c:if>
|
</c:if>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</c:if>
|
</c:if>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
<title>alertPage</title>
|
<title>alertPage</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript">
|
<script>
|
||||||
var message = "${msg}";
|
var message = "${msg}";
|
||||||
var url = "${url}";
|
var url = "${url}";
|
||||||
alert(message);
|
alert(message);
|
||||||
|
|||||||
@ -9,7 +9,7 @@
|
|||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title><spring:message code="title.html"/></title>
|
<title><spring:message code="title.html"/></title>
|
||||||
<link href="<c:url value='/css/egovframework/com/com.css' />" rel="stylesheet" type="text/css" />
|
<link href="<c:url value='/css/egovframework/com/com.css' />" rel="stylesheet" type="text/css" />
|
||||||
<script language="javascript">
|
<script>
|
||||||
function fncGoAfterErrorPage(){
|
function fncGoAfterErrorPage(){
|
||||||
history.back(-2);
|
history.back(-2);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
<title><spring:message code="title.html"/></title>
|
<title><spring:message code="title.html"/></title>
|
||||||
<link href="<c:url value='/css/egovframework/com/com.css' />" rel="stylesheet" type="text/css" />
|
<link href="<c:url value='/css/egovframework/com/com.css' />" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
<script language="javascript">
|
<script>
|
||||||
function fncGoAfterErrorPage(){
|
function fncGoAfterErrorPage(){
|
||||||
history.back(-2);
|
history.back(-2);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
<title><spring:message code="title.html"/></title>
|
<title><spring:message code="title.html"/></title>
|
||||||
<link href="<c:url value='/css/egovframework/com/com.css' />" rel="stylesheet" type="text/css" />
|
<link href="<c:url value='/css/egovframework/com/com.css' />" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
<script language="javascript">
|
<script>
|
||||||
function fncGoAfterErrorPage(){
|
function fncGoAfterErrorPage(){
|
||||||
history.back(-2);
|
history.back(-2);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -9,7 +9,7 @@
|
|||||||
<title><spring:message code="title.html"/></title>
|
<title><spring:message code="title.html"/></title>
|
||||||
<link href="<c:url value='/css/egovframework/com/com.css' />" rel="stylesheet" type="text/css" />
|
<link href="<c:url value='/css/egovframework/com/com.css' />" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
<script language="javascript">
|
<script>
|
||||||
function fncGoAfterErrorPage(){
|
function fncGoAfterErrorPage(){
|
||||||
history.back(-2);
|
history.back(-2);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
<title><spring:message code="title.html"/></title>
|
<title><spring:message code="title.html"/></title>
|
||||||
<link href="<c:url value='/css/egovframework/com/com.css' />" rel="stylesheet" type="text/css" />
|
<link href="<c:url value='/css/egovframework/com/com.css' />" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
<script language="javascript">
|
<script>
|
||||||
function fncGoAfterErrorPage(){
|
function fncGoAfterErrorPage(){
|
||||||
history.back(-2);
|
history.back(-2);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
<title><spring:message code="title.html"/></title>
|
<title><spring:message code="title.html"/></title>
|
||||||
<link href="<c:url value='/css/egovframework/com/com.css' />" rel="stylesheet" type="text/css" />
|
<link href="<c:url value='/css/egovframework/com/com.css' />" rel="stylesheet" type="text/css" />
|
||||||
|
|
||||||
<script language="javascript">
|
<script>
|
||||||
function fncGoAfterErrorPage(){
|
function fncGoAfterErrorPage(){
|
||||||
history.back(-2);
|
history.back(-2);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -35,7 +35,7 @@ function fn_getMemberCard() {
|
|||||||
<h2 class="blind">헤더영역</h2>
|
<h2 class="blind">헤더영역</h2>
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
|
|
||||||
<h1><a href="javascript:void(0)" onclick="javascript:location.href='/';"><img src="/images/img/img-logo.svg" alt="로고"><span class="title-1" name="siteCommonTitle" id="siteCommonTitle">${councilNm}</span><span class="title-2">소장자료관</span></a></h1>
|
<h1><a href="javascript:void(0)" onclick="javascript:location.href='/';"><img src="/images/img/img-logo.svg" alt="로고"><span class="title-1" id="siteCommonTitle">${councilNm}</span><span class="title-2">소장자료관</span></a></h1>
|
||||||
|
|
||||||
<div class="search-wrap">
|
<div class="search-wrap">
|
||||||
<h2 class="blind">검색</h2>
|
<h2 class="blind">검색</h2>
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
||||||
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags"%>
|
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags"%>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script>
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$("#DIV_PAGE_MAIN").removeClass("sub");
|
$("#DIV_PAGE_MAIN").removeClass("sub");
|
||||||
@ -98,7 +98,7 @@ function fn_listPops(typeDivCd) {
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="list">
|
<div class="list">
|
||||||
<a href="javascript:void(0);" onclick="location.href = '/inform/selectNCultureLocationInfo.do';" title="찾아오시는 길">
|
<a href="javascript:void(0);" onclick="gfn_gotoUrl('/inform/selectNCultureLocationInfo.do')" title="찾아오시는 길">
|
||||||
<div class="title">찾아오시는 길</div>
|
<div class="title">찾아오시는 길</div>
|
||||||
<div class="icon"><img src="/images/icon/icon-sec1-02.png" alt="지도 아이콘"></div>
|
<div class="icon"><img src="/images/icon/icon-sec1-02.png" alt="지도 아이콘"></div>
|
||||||
<div class="open"><img src="/images/icon/icon-plus.png" alt="플러스 아이콘"></div>
|
<div class="open"><img src="/images/icon/icon-plus.png" alt="플러스 아이콘"></div>
|
||||||
@ -239,13 +239,13 @@ function fn_listPops(typeDivCd) {
|
|||||||
</c:if>
|
</c:if>
|
||||||
|
|
||||||
<!-- 섹션6 -->
|
<!-- 섹션6 -->
|
||||||
<c:if test="${fn:length(listOnline) > 0 }">
|
<c:if test="${fn:length(listOnline) > -1 }">
|
||||||
<section class="sec6">
|
<section class="sec6">
|
||||||
<h2 class="blind">온라인자료관 섹션영역</h2>
|
<h2 class="blind">온라인자료관 섹션영역</h2>
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
<h3 class="title"><span>온라인</span> 자료관</h3>
|
<h3 class="title"><span>온라인</span> 자료관</h3>
|
||||||
<p class="desc">문화원 전자자료를 온라인으로 간편하게 열람해보세요!</p>
|
<p class="desc">문화원 전자자료를 온라인으로 간편하게 열람해보세요!</p>
|
||||||
<a href="javascript:void(0)" onclick="location.href='/search/searchList.do?collection=lib_online';"><span>더보기 <img src="/images/icon/icon-more.png" alt="더보기 아이콘"></span></a>
|
<div class="more-btn"><a href="javascript:void(0)" onclick="location.href='/search/searchList.do?collection=lib_online';"><span>더보기 ></span></a></div>
|
||||||
<!-- Swiper -->
|
<!-- Swiper -->
|
||||||
<div class="swiper onlineSwiper">
|
<div class="swiper onlineSwiper">
|
||||||
<div class="swiper-wrapper items cover">
|
<div class="swiper-wrapper items cover">
|
||||||
@ -275,7 +275,6 @@ function fn_listPops(typeDivCd) {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="swiper-button-next"></div>
|
<div class="swiper-button-next"></div>
|
||||||
<div class="swiper-button-prev"></div>
|
<div class="swiper-button-prev"></div>
|
||||||
|
|||||||
@ -33,7 +33,7 @@
|
|||||||
|
|
||||||
<c:set var="pageTitle">알림</c:set>
|
<c:set var="pageTitle">알림</c:set>
|
||||||
|
|
||||||
<script type="text/javaScript" language="javascript">
|
<script>
|
||||||
|
|
||||||
$( document ).ready(function() {
|
$( document ).ready(function() {
|
||||||
|
|
||||||
@ -158,7 +158,7 @@ $( document ).ready(function() {
|
|||||||
else li.find(".question").append($('<span />').attr("class", "type").html("[소장자료관]"));
|
else li.find(".question").append($('<span />').attr("class", "type").html("[소장자료관]"));
|
||||||
|
|
||||||
var unread = "";
|
var unread = "";
|
||||||
if(obj.readYn != "Y") unread = " <unread>(미확인)</unread>";
|
if(obj.readYn != "Y") unread = " <unread>미확인</unread>";
|
||||||
li.find(".question").append($('<span />').html(obj.title + unread));
|
li.find(".question").append($('<span />').html(obj.title + unread));
|
||||||
li.find(".question").append($('<span />').attr('class', 'date').html(obj.regDd));
|
li.find(".question").append($('<span />').attr('class', 'date').html(obj.regDd));
|
||||||
li.append($('<div></div>').attr('class', 'answer').attr('style', 'display: none;'));
|
li.append($('<div></div>').attr('class', 'answer').attr('style', 'display: none;'));
|
||||||
@ -195,7 +195,7 @@ $( document ).ready(function() {
|
|||||||
<div class="contents row-bottom">
|
<div class="contents row-bottom">
|
||||||
<div class="list-box noti-box">
|
<div class="list-box noti-box">
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<span class="count">총 <em name="itemsCount" id="itemsCount">0</em>건</span>
|
<span class="count">총 <em id="itemsCount">0</em>건</span>
|
||||||
<div class="text">
|
<div class="text">
|
||||||
<p>- 최근 한달동안 발송된 알림 내역만 보관됩니다.</p>
|
<p>- 최근 한달동안 발송된 알림 내역만 보관됩니다.</p>
|
||||||
</div>
|
</div>
|
||||||
@ -220,6 +220,6 @@ $( document ).ready(function() {
|
|||||||
<form name="articleForm" id="articleForm" method="post" onsubmit="return false;">
|
<form name="articleForm" id="articleForm" method="post" onsubmit="return false;">
|
||||||
<input type="hidden" name="pageSize" id="pageSize" value="${pageSize }" />
|
<input type="hidden" name="pageSize" id="pageSize" value="${pageSize }" />
|
||||||
<input type="hidden" name="pageIndex" id="pageIndex" title="페이지번호" value="${pageIndex }" />
|
<input type="hidden" name="pageIndex" id="pageIndex" title="페이지번호" value="${pageIndex }" />
|
||||||
<input type="hidden" name="articleId" id="articleId" title="게시글번호" value="" readonly />
|
<input type="hidden" name="articleId" id="articleId" title="게시글번호" value="" />
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
|||||||
@ -38,7 +38,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<title>${pageTitle}</title>
|
<title>${pageTitle}</title>
|
||||||
|
|
||||||
<script type="text/javaScript" language="javascript">
|
<script>
|
||||||
|
|
||||||
$( document ).ready(function() {
|
$( document ).ready(function() {
|
||||||
|
|
||||||
|
|||||||
@ -38,7 +38,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<title>${pageTitle}</title>
|
<title>${pageTitle}</title>
|
||||||
|
|
||||||
<script type="text/javaScript" language="javascript">
|
<script>
|
||||||
|
|
||||||
$( document ).ready(function() {
|
$( document ).ready(function() {
|
||||||
|
|
||||||
|
|||||||
@ -37,7 +37,7 @@ String councilNm = (String)session.getAttribute("councilNm");
|
|||||||
%>
|
%>
|
||||||
|
|
||||||
<c:set var="pageTitle">인사말 </c:set>
|
<c:set var="pageTitle">인사말 </c:set>
|
||||||
<script type="text/javascript">
|
<script>
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
$( document ).ready(function() {
|
$( document ).ready(function() {
|
||||||
|
|||||||
@ -1,69 +0,0 @@
|
|||||||
<%
|
|
||||||
/**
|
|
||||||
* <pre>
|
|
||||||
* @Class Name : selectNCultureLocationInfo.jsp
|
|
||||||
*
|
|
||||||
* @Description : 찾아오시는길 조회
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @프로젝트명: 지방문화원 통합자료관리시스템 구축사업 (2021)
|
|
||||||
*
|
|
||||||
* </pre>
|
|
||||||
*
|
|
||||||
* @ ------------ -------- ---------------------------
|
|
||||||
* @ 수정일 수정자 수정내용
|
|
||||||
* @ ------------ -------- ---------------------------
|
|
||||||
* @ 2021. 7. 27. KNKIM 최초 생성
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* @author 이씨플라자 * DIGITALSHIP KNKIM
|
|
||||||
* @since 2021. 7. 27.
|
|
||||||
* @version 1.0
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
%>
|
|
||||||
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
|
|
||||||
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
||||||
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui" %>
|
|
||||||
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
|
|
||||||
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
|
|
||||||
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
|
|
||||||
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
|
|
||||||
<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %>
|
|
||||||
|
|
||||||
<c:set var="pageTitle">찾아오시는길 </c:set>
|
|
||||||
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>${pageTitle}</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<h1>${pageTitle }</h1>
|
|
||||||
|
|
||||||
주소 : ${zipcode } ${addr1 } ${addr2 } <br />
|
|
||||||
전화번호 : ${tel } <br />
|
|
||||||
팩스번호 : ${fax } <br />
|
|
||||||
|
|
||||||
<br/>
|
|
||||||
|
|
||||||
<!-- 카카오맵 지도 : 이미지 방식 -->
|
|
||||||
<div style="font: 12px AppleSDGothicNeo-Regular, dotum, sans-serif; letter-spacing: -1px; width: 640px; height: 392px; color: rgb(51, 51, 51); position: relative;">
|
|
||||||
<div style="height: 360px;">
|
|
||||||
<a href="https://map.kakao.com/?urlX=488368&urlY=1122104&itemId=8207584&q=%EA%B7%BC%EC%8B%A0%EB%B9%8C%EB%94%A9%20%EB%B3%B8%EA%B4%80&srcid=8207584&map_type=TYPE_MAP&from=roughmap" target="_blank"><img class="map" src="http://t1.daumcdn.net/roughmap/imgmap/cd2c856fde36adb381e3ad251ec754b834e3b8c31384e2850a98e16c16eac72d" width="638" height="358" style="border: 1px solid rgb(204, 204, 204);"></a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script type="text/javaScript" language="javascript">
|
|
||||||
$(document).ready(function() {
|
|
||||||
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@ -97,5 +97,3 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|||||||
@ -32,7 +32,7 @@
|
|||||||
<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %>
|
<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %>
|
||||||
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags"%>
|
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags"%>
|
||||||
|
|
||||||
<script type="text/javaScript" language="javascript">
|
<script>
|
||||||
var BTN_APP_PREFIX = "대출신청/예약";
|
var BTN_APP_PREFIX = "대출신청/예약";
|
||||||
|
|
||||||
$( document ).ready(function() {
|
$( document ).ready(function() {
|
||||||
@ -131,8 +131,17 @@ function fn_gotoDetail(masterId) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function fn_listCartItems() {
|
function fn_listCartItems() {
|
||||||
|
|
||||||
|
|
||||||
|
<c:if test='${fromCart == "Y" }'>
|
||||||
$("#frm").attr("action","${pageContext.request.contextPath}/cart/listCartItems.do");
|
$("#frm").attr("action","${pageContext.request.contextPath}/cart/listCartItems.do");
|
||||||
$("#frm").submit();
|
$("#frm").submit();
|
||||||
|
</c:if>
|
||||||
|
|
||||||
|
<c:if test='${fromCart != "Y" }'>
|
||||||
|
history.back();
|
||||||
|
</c:if>
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
|
|||||||
@ -32,7 +32,7 @@
|
|||||||
<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %>
|
<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %>
|
||||||
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags"%>
|
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags"%>
|
||||||
|
|
||||||
<script type="text/javaScript" language="javascript">
|
<script>
|
||||||
var BTN_APP_PREFIX = "대출신청/예약";
|
var BTN_APP_PREFIX = "대출신청/예약";
|
||||||
|
|
||||||
$( document ).ready(function() {
|
$( document ).ready(function() {
|
||||||
|
|||||||
@ -34,7 +34,7 @@
|
|||||||
|
|
||||||
<c:set var="pageTitle">방문열람관리</c:set>
|
<c:set var="pageTitle">방문열람관리</c:set>
|
||||||
|
|
||||||
<script type="text/javaScript" language="javascript">
|
<script>
|
||||||
|
|
||||||
$( document ).ready(function() {
|
$( document ).ready(function() {
|
||||||
|
|
||||||
@ -244,8 +244,8 @@ function fn_search(reqStatusDivCd) {
|
|||||||
<div class="list-box visit-box">
|
<div class="list-box visit-box">
|
||||||
<form name="frm" id="frm" method="post">
|
<form name="frm" id="frm" method="post">
|
||||||
<input type="hidden" name="reqStatusDivCd" id="reqStatusDivCd" value="${reqStatusDivCd }" />
|
<input type="hidden" name="reqStatusDivCd" id="reqStatusDivCd" value="${reqStatusDivCd }" />
|
||||||
<input type="hidden" name="pageIndex" id="pageIndex" title="페이지번호" value="${pageIndex }" size="5" maxlength="5" />
|
<input type="hidden" name="pageIndex" id="pageIndex" title="페이지번호" value="${pageIndex }" />
|
||||||
<input type="hidden" name="pageSize" id="pageSize" title="페이지크기" value="${pageSize }" size="5" maxlength="5" />
|
<input type="hidden" name="pageSize" id="pageSize" title="페이지크기" value="${pageSize }" />
|
||||||
<input type="hidden" name="masterId" id="masterId" title="페이지크기" value="" />
|
<input type="hidden" name="masterId" id="masterId" title="페이지크기" value="" />
|
||||||
|
|
||||||
<div class="tab">
|
<div class="tab">
|
||||||
@ -257,7 +257,7 @@ function fn_search(reqStatusDivCd) {
|
|||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<span class="count">총 <em name="itemsCount" id="itemsCount">0</em>건</span>
|
<span class="count">총 <em id="itemsCount">0</em>건</span>
|
||||||
<div class="list-search-wrap list-top">
|
<div class="list-search-wrap list-top">
|
||||||
<div class="list-select">
|
<div class="list-select">
|
||||||
<select name="mngOrgCd" id="mngOrgCd" title="문화원 선택">
|
<select name="mngOrgCd" id="mngOrgCd" title="문화원 선택">
|
||||||
|
|||||||
@ -32,7 +32,7 @@
|
|||||||
<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %>
|
<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %>
|
||||||
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags"%>
|
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags"%>
|
||||||
|
|
||||||
<script type="text/javaScript" language="javascript">
|
<script>
|
||||||
var BTN_APP_PREFIX = "대출신청/예약";
|
var BTN_APP_PREFIX = "대출신청/예약";
|
||||||
|
|
||||||
$( document ).ready(function() {
|
$( document ).ready(function() {
|
||||||
@ -121,8 +121,15 @@ function fn_changeInterest(masterId, onOff) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function fn_listCartItems() {
|
function fn_listCartItems() {
|
||||||
|
|
||||||
|
<c:if test='${fromCart == "Y" }'>
|
||||||
$("#frm").attr("action","${pageContext.request.contextPath}/cart/listCartItems.do");
|
$("#frm").attr("action","${pageContext.request.contextPath}/cart/listCartItems.do");
|
||||||
$("#frm").submit();
|
$("#frm").submit();
|
||||||
|
</c:if>
|
||||||
|
|
||||||
|
<c:if test='${fromCart != "Y" }'>
|
||||||
|
history.back();
|
||||||
|
</c:if>
|
||||||
}
|
}
|
||||||
|
|
||||||
function fn_gotoDetail(masterId) {
|
function fn_gotoDetail(masterId) {
|
||||||
|
|||||||
@ -32,7 +32,7 @@
|
|||||||
<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %>
|
<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator" %>
|
||||||
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags"%>
|
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags"%>
|
||||||
|
|
||||||
<script type="text/javaScript" language="javascript">
|
<script>
|
||||||
var BTN_APP_PREFIX = "대출신청/예약";
|
var BTN_APP_PREFIX = "대출신청/예약";
|
||||||
|
|
||||||
$( document ).ready(function() {
|
$( document ).ready(function() {
|
||||||
|
|||||||
@ -43,7 +43,7 @@
|
|||||||
<link type="text/css" rel="stylesheet" href="${pageContext.request.contextPath}/js/jsgrid/nlib-jsgrid-theme.css" />
|
<link type="text/css" rel="stylesheet" href="${pageContext.request.contextPath}/js/jsgrid/nlib-jsgrid-theme.css" />
|
||||||
<script src="${pageContext.request.contextPath}/js/jsgrid/nlib-jsgrid.js"></script>
|
<script src="${pageContext.request.contextPath}/js/jsgrid/nlib-jsgrid.js"></script>
|
||||||
|
|
||||||
<script type="text/javaScript" language="javascript">
|
<script>
|
||||||
|
|
||||||
window.onload = function() {
|
window.onload = function() {
|
||||||
//=======================================================
|
//=======================================================
|
||||||
|
|||||||
@ -43,7 +43,7 @@
|
|||||||
<link type="text/css" rel="stylesheet" href="${pageContext.request.contextPath}/js/jsgrid/nlib-jsgrid-theme.css" />
|
<link type="text/css" rel="stylesheet" href="${pageContext.request.contextPath}/js/jsgrid/nlib-jsgrid-theme.css" />
|
||||||
<script src="${pageContext.request.contextPath}/js/jsgrid/nlib-jsgrid.js"></script>
|
<script src="${pageContext.request.contextPath}/js/jsgrid/nlib-jsgrid.js"></script>
|
||||||
|
|
||||||
<script type="text/javaScript" language="javascript">
|
<script>
|
||||||
|
|
||||||
window.onload = function() {
|
window.onload = function() {
|
||||||
//=======================================================
|
//=======================================================
|
||||||
|
|||||||
@ -38,7 +38,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script type="text/javaScript" language="javascript">
|
<script>
|
||||||
|
|
||||||
$( document ).ready(function() {
|
$( document ).ready(function() {
|
||||||
|
|
||||||
@ -218,8 +218,8 @@ function fn_search(bookLtRvStatusCd) {
|
|||||||
<div class="list-box loan-box">
|
<div class="list-box loan-box">
|
||||||
<form name="frm" id="frm" method="post">
|
<form name="frm" id="frm" method="post">
|
||||||
<input type="hidden" name="bookLtRvStatusCd" id="bookLtRvStatusCd" value="${bookLtRvStatusCd }" />
|
<input type="hidden" name="bookLtRvStatusCd" id="bookLtRvStatusCd" value="${bookLtRvStatusCd }" />
|
||||||
<input type="hidden" name="pageIndex" id="pageIndex" title="페이지번호" value="${pageIndex }" size="5" maxlength="5" />
|
<input type="hidden" name="pageIndex" id="pageIndex" title="페이지번호" value="${pageIndex }" />
|
||||||
<input type="hidden" name="pageSize" id="pageSize" title="페이지크기" value="${pageSize }" size="5" maxlength="5" />
|
<input type="hidden" name="pageSize" id="pageSize" title="페이지크기" value="${pageSize }" />
|
||||||
<input type="hidden" name="masterId" id="masterId" title="페이지크기" value="" />
|
<input type="hidden" name="masterId" id="masterId" title="페이지크기" value="" />
|
||||||
|
|
||||||
<div class="tab">
|
<div class="tab">
|
||||||
@ -232,7 +232,7 @@ function fn_search(bookLtRvStatusCd) {
|
|||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<span class="count">총 <em name="itemsCount" id="itemsCount">0</em>건</span>
|
<span class="count">총 <em id="itemsCount">0</em>건</span>
|
||||||
<div class="list-search-wrap list-top">
|
<div class="list-search-wrap list-top">
|
||||||
<div class="list-select">
|
<div class="list-select">
|
||||||
<select name="mngOrgCd" id="mngOrgCd" title="문화원 선택">
|
<select name="mngOrgCd" id="mngOrgCd" title="문화원 선택">
|
||||||
|
|||||||
@ -122,7 +122,7 @@
|
|||||||
<h3>소장자료관 접속현황</h3>
|
<h3>소장자료관 접속현황</h3>
|
||||||
<div class="key-box">
|
<div class="key-box">
|
||||||
<c:forEach var="itemVisitedOrgs" items="${visitedOrgs }">
|
<c:forEach var="itemVisitedOrgs" items="${visitedOrgs }">
|
||||||
<a href="javascript:void(0);" onclick="gfn_openNewWindow('https://${itemVisitedOrgs.domainHostNm}.nculture.org')"><span type="button">${itemVisitedOrgs.deptNm }</span></a>
|
<a href="javascript:void(0);" onclick="gfn_openNewWindow('https://${itemVisitedOrgs.domainHostNm}.nculture.org')"><span class="button">${itemVisitedOrgs.deptNm }</span></a>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -4,7 +4,7 @@
|
|||||||
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui" %>
|
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui" %>
|
||||||
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
||||||
|
|
||||||
<button type="button" id="btn-go-top" class="btn-go-top"><span><img src="/images/icon/icon-arr-top.png" alt="상단 화살표"></span><p>TOP</p></button>
|
<button type="button" id="btn-go-top" class="btn-go-top"><span><img src="/images/icon/icon-arr-top.png" alt="상단 화살표"></span><span>TOP</span></button>
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
<div class="row-top">
|
<div class="row-top">
|
||||||
<div class="footer-logo">
|
<div class="footer-logo">
|
||||||
@ -27,9 +27,9 @@
|
|||||||
<div class="row-bottom">
|
<div class="row-bottom">
|
||||||
<div class="left-side">
|
<div class="left-side">
|
||||||
<ul class="fnb">
|
<ul class="fnb">
|
||||||
<li><a href="javascript:void(0)" onclick="javascript:location.href='${pageContext.request.contextPath}/inform/selectTermsInfo.do';">이용약관</a></li>
|
<li><a href="javascript:void(0)" onclick="gfn_gotoUrl('${pageContext.request.contextPath}/inform/selectTermsInfo.do')">이용약관</a></li>
|
||||||
<li><a href="javascript:void(0)" onclick="javascript:location.href='${pageContext.request.contextPath}/inform/selectPrivacyInfo.do';">개인정보처리방침</a></li>
|
<li><a href="javascript:void(0)" onclick="gfn_gotoUrl('${pageContext.request.contextPath}/inform/selectPrivacyInfo.do')">개인정보처리방침</a></li>
|
||||||
<li><a href="javascript:void(0)" onclick="javascript:location.href='${pageContext.request.contextPath}/inform/selectNCultureLocationInfo.do';">찾아오시는 길</a></li>
|
<li><a href="javascript:void(0)" onclick="gfn_gotoUrl('${pageContext.request.contextPath}/inform/selectNCultureLocationInfo.do')">찾아오시는 길</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<p class="copy">
|
<p class="copy">
|
||||||
서울시 마포대로49 성우빌딩 308호 <span><a href="tel:02-704-2322">TEL. 02.704-2322</a></span> <span>FAX. 02.704-2377</span> <br>
|
서울시 마포대로49 성우빌딩 308호 <span><a href="tel:02-704-2322">TEL. 02.704-2322</a></span> <span>FAX. 02.704-2377</span> <br>
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
<script>
|
<script>
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
|
|
||||||
$("a[reqLogin]").each(function() {
|
$("a[data-reqLogin='true']").each(function() {
|
||||||
|
|
||||||
<sec:authorize access="not isAuthenticated()">
|
<sec:authorize access="not isAuthenticated()">
|
||||||
this.onclick = function() {
|
this.onclick = function() {
|
||||||
@ -16,7 +16,7 @@ $(document).ready(function() {
|
|||||||
|
|
||||||
<sec:authorize access="isAuthenticated()">
|
<sec:authorize access="isAuthenticated()">
|
||||||
this.onclick = function() {
|
this.onclick = function() {
|
||||||
var gotoUrl = $(this).attr("gotoUrl");
|
var gotoUrl = $(this).attr("data-gotoUrl");
|
||||||
if(fn_isEmpty(gotoUrl)) {
|
if(fn_isEmpty(gotoUrl)) {
|
||||||
alert("접속 정보가 없습니다. \n관리자에게 문의하여 주시기 바랍니다.");
|
alert("접속 정보가 없습니다. \n관리자에게 문의하여 주시기 바랍니다.");
|
||||||
} else {
|
} else {
|
||||||
@ -43,27 +43,27 @@ $(document).ready(function() {
|
|||||||
<ul class="dropdown menu">
|
<ul class="dropdown menu">
|
||||||
<li><a href="javascript:void(0)" onclick="javascript:location.href='${pageContext.request.contextPath}/inform/selectGreeting.do';" title="자료관안내" class="eff">자료관안내</a>
|
<li><a href="javascript:void(0)" onclick="javascript:location.href='${pageContext.request.contextPath}/inform/selectGreeting.do';" title="자료관안내" class="eff">자료관안내</a>
|
||||||
<ul class="sub-menu">
|
<ul class="sub-menu">
|
||||||
<li><a href="javascript:void(0)" onclick="javascript:location.href='${pageContext.request.contextPath}/inform/selectGreeting.do';" title="인사말"><span class="underline blue">인사말</span></a></li>
|
<li><a href="javascript:void(0)" onclick="gfn_gotoUrl('${pageContext.request.contextPath}/inform/selectGreeting.do')" title="인사말"><span class="underline blue">인사말</span></a></li>
|
||||||
<li><a href="javascript:void(0)" onclick="javascript:location.href='${pageContext.request.contextPath}/inform/selectNCultureOperationInfo.do';" title="이용안내"><span class="underline blue">이용안내</span></a></li>
|
<li><a href="javascript:void(0)" onclick="gfn_gotoUrl('${pageContext.request.contextPath}/inform/selectNCultureOperationInfo.do')" title="이용안내"><span class="underline blue">이용안내</span></a></li>
|
||||||
<li><a href="javascript:void(0)" onclick="javascript:location.href='${pageContext.request.contextPath}/inform/selectNCultureLocationInfo.do';" title="찾아오시는길"><span class="underline blue">찾아오시는길</span></a></li>
|
<li><a href="javascript:void(0)" onclick="gfn_gotoUrl('${pageContext.request.contextPath}/inform/selectNCultureLocationInfo.do')" title="찾아오시는길"><span class="underline blue">찾아오시는길</span></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li><a href="javascript:void(0)" onclick="javascript:location.href='${pageContext.request.contextPath}/search/searchList.do';" title="소장자료" class="eff">소장자료</a></li>
|
<li><a href="javascript:void(0)" onclick="javascript:location.href='${pageContext.request.contextPath}/search/searchList.do';" title="소장자료" class="eff">소장자료</a></li>
|
||||||
|
|
||||||
<li><a href="javascript:void(0)" onclick="javascript:location.href='${pageContext.request.contextPath}/bbs/listAncmnts.do';" title="고객지원" class="eff">고객지원</a>
|
<li><a href="javascript:void(0)" onclick="javascript:location.href='${pageContext.request.contextPath}/bbs/listAncmnts.do';" title="고객지원" class="eff">고객지원</a>
|
||||||
<ul class="sub-menu">
|
<ul class="sub-menu">
|
||||||
<li><a href="javascript:void(0)" onclick="javascript:location.href='${pageContext.request.contextPath}/bbs/listAncmnts.do';" title="공지사항"><span class="underline blue">공지사항</span></a></li>
|
<li><a href="javascript:void(0)" onclick="gfn_gotoUrl('${pageContext.request.contextPath}/bbs/listAncmnts.do')" title="공지사항"><span class="underline blue">공지사항</span></a></li>
|
||||||
<li><a href="javascript:void(0)" onclick="javascript:location.href='${pageContext.request.contextPath}/bbs/listFaqs.do';" title="FAQ"><span class="underline blue">FAQ</span></a></li>
|
<li><a href="javascript:void(0)" onclick="gfn_gotoUrl('${pageContext.request.contextPath}/bbs/listFaqs.do')" title="FAQ"><span class="underline blue">FAQ</span></a></li>
|
||||||
<li><a href="javascript:void(0)" onclick="javascript:location.href='${pageContext.request.contextPath}/bbs/listQnas.do';" title="Q&A"><span class="underline blue">Q&A</span></a></li>
|
<li><a href="javascript:void(0)" onclick="gfn_gotoUrl('${pageContext.request.contextPath}/bbs/listQnas.do')" title="Q&A"><span class="underline blue">Q&A</span></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li><a href="javascript:void(0)" gotoUrl="${pageContext.request.contextPath}/userInfo/getMyHome.do" title="마이페이지" class="eff" reqLogin>마이페이지</a>
|
<li><a href="javascript:void(0)" data-gotoUrl="${pageContext.request.contextPath}/userInfo/getMyHome.do" title="마이페이지" class="eff" data-reqLogin="true">마이페이지</a>
|
||||||
<ul class="sub-menu">
|
<ul class="sub-menu">
|
||||||
<li><a href="javascript:void(0)" gotoUrl="${pageContext.request.contextPath}/userInfo/pwCertMyInfo.do" title="회원정보관리" reqLogin><span class="underline blue">회원정보관리</span></a></li>
|
<li><a href="javascript:void(0)" data-gotoUrl="${pageContext.request.contextPath}/userInfo/pwCertMyInfo.do" title="회원정보관리" data-reqLogin="true"><span class="underline blue">회원정보관리</span></a></li>
|
||||||
<li><a href="javascript:void(0)" gotoUrl="${pageContext.request.contextPath}/interest/listInterests.do" title="관심자료" reqLogin><span class="underline blue">관심자료</span></a></li>
|
<li><a href="javascript:void(0)" data-gotoUrl="${pageContext.request.contextPath}/interest/listInterests.do" title="관심자료" data-reqLogin="true"><span class="underline blue">관심자료</span></a></li>
|
||||||
<li><a href="javascript:void(0)" gotoUrl="${pageContext.request.contextPath}/rent/listRentItems.do" title="대출관리" reqLogin><span class="underline blue">대출관리</span></a></li>
|
<li><a href="javascript:void(0)" data-gotoUrl="${pageContext.request.contextPath}/rent/listRentItems.do" title="대출관리" data-reqLogin="true"><span class="underline blue">대출관리</span></a></li>
|
||||||
<li><a href="javascript:void(0)" gotoUrl="${pageContext.request.contextPath}/read/listReadItems.do" title="방문열람관리" reqLogin><span class="underline blue">방문열람관리</span></a></li>
|
<li><a href="javascript:void(0)" data-gotoUrl="${pageContext.request.contextPath}/read/listReadItems.do" title="방문열람관리" data-reqLogin="true"><span class="underline blue">방문열람관리</span></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
@ -96,13 +96,13 @@ $(document).ready(function() {
|
|||||||
<div class="drop_icon"></div>
|
<div class="drop_icon"></div>
|
||||||
</div>
|
</div>
|
||||||
<ul class="sub-menu">
|
<ul class="sub-menu">
|
||||||
<li><a href="javascript:void(0)" onclick="javascript:location.href='${pageContext.request.contextPath}/inform/selectGreeting.do';" title="인사말"><span class="underline blue">- 인사말</span></a></li>
|
<li><a href="javascript:void(0)" onclick="gfn_gotoUrl('${pageContext.request.contextPath}/inform/selectGreeting.do')" title="인사말"><span class="underline blue">- 인사말</span></a></li>
|
||||||
<li><a href="javascript:void(0)" onclick="javascript:location.href='${pageContext.request.contextPath}/inform/selectNCultureOperationInfo.do';" title="이용안내"><span class="underline blue">- 이용안내</span></a></li>
|
<li><a href="javascript:void(0)" onclick="gfn_gotoUrl('${pageContext.request.contextPath}/inform/selectNCultureOperationInfo.do')" title="이용안내"><span class="underline blue">- 이용안내</span></a></li>
|
||||||
<li><a href="javascript:void(0)" onclick="javascript:location.href='${pageContext.request.contextPath}/inform/selectNCultureLocationInfo.do';" title="찾아오시는길">- 찾아오시는길</span></a></li>
|
<li><a href="javascript:void(0)" onclick="gfn_gotoUrl('${pageContext.request.contextPath}/inform/selectNCultureLocationInfo.do')" title="찾아오시는길"><span class="underline blue">- 찾아오시는길</span></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="mo_menu">
|
<li class="mo_menu">
|
||||||
<a href="javascript:void(0)" onclick="javascript:location.href='${pageContext.request.contextPath}/search/searchList.do';" title="소장자료">
|
<a href="javascript:void(0)" onclick="gfn_gotoUrl('${pageContext.request.contextPath}/search/searchList.do')" title="소장자료">
|
||||||
<div class="wrap">
|
<div class="wrap">
|
||||||
<div class="name">소장자료</div>
|
<div class="name">소장자료</div>
|
||||||
<div class="drop_icon"></div>
|
<div class="drop_icon"></div>
|
||||||
@ -115,9 +115,9 @@ $(document).ready(function() {
|
|||||||
<div class="drop_icon"></div>
|
<div class="drop_icon"></div>
|
||||||
</div>
|
</div>
|
||||||
<ul class="sub-menu">
|
<ul class="sub-menu">
|
||||||
<li><a href="javascript:void(0)" onclick="javascript:location.href='${pageContext.request.contextPath}/bbs/listAncmnts.do';" title="공지사항"><span class="underline blue">- 공지사항</span></a></li>
|
<li><a href="javascript:void(0)" onclick="gfn_gotoUrl('${pageContext.request.contextPath}/bbs/listAncmnts.do')" title="공지사항"><span class="underline blue">- 공지사항</span></a></li>
|
||||||
<li><a href="javascript:void(0)" onclick="javascript:location.href='${pageContext.request.contextPath}/bbs/listFaqs.do';" title="FAQ"><span class="underline blue">- FAQ</span></a></li>
|
<li><a href="javascript:void(0)" onclick="gfn_gotoUrl('${pageContext.request.contextPath}/bbs/listFaqs.do')" title="FAQ"><span class="underline blue">- FAQ</span></a></li>
|
||||||
<li><a href="javascript:void(0)" onclick="javascript:location.href='${pageContext.request.contextPath}/bbs/listQnas.do';" title="Q&A"><span class="underline blue">- Q&A</span></a></li>
|
<li><a href="javascript:void(0)" onclick="gfn_gotoUrl('${pageContext.request.contextPath}/bbs/listQnas.do')" title="Q&A"><span class="underline blue">- Q&A</span></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="mo_menu">
|
<li class="mo_menu">
|
||||||
@ -126,10 +126,10 @@ $(document).ready(function() {
|
|||||||
<div class="drop_icon"></div>
|
<div class="drop_icon"></div>
|
||||||
</div>
|
</div>
|
||||||
<ul class="sub-menu">
|
<ul class="sub-menu">
|
||||||
<li><a href="javascript:void(0)" gotoUrl="${pageContext.request.contextPath}/userInfo/pwCertMyInfo.do" title="회원정보관리"><span class="underline blue">- 회원정보관리</span></a></li>
|
<li><a href="javascript:void(0)" data-gotoUrl="${pageContext.request.contextPath}/userInfo/pwCertMyInfo.do" title="회원정보관리"><span class="underline blue">- 회원정보관리</span></a></li>
|
||||||
<li><a href="javascript:void(0)" gotoUrl="${pageContext.request.contextPath}/interest/listInterests.do" title="관심자료"><span class="underline blue">- 관심자료</span></a></li>
|
<li><a href="javascript:void(0)" data-gotoUrl="${pageContext.request.contextPath}/interest/listInterests.do" title="관심자료"><span class="underline blue">- 관심자료</span></a></li>
|
||||||
<li><a href="javascript:void(0)" gotoUrl="${pageContext.request.contextPath}/rent/listRentItems.do" title="대출관리"><span class="underline blue">- 대출관리</span></a></li>
|
<li><a href="javascript:void(0)" data-gotoUrl="${pageContext.request.contextPath}/rent/listRentItems.do" title="대출관리"><span class="underline blue">- 대출관리</span></a></li>
|
||||||
<li><a href="javascript:void(0)" gotoUrl="${pageContext.request.contextPath}/read/listReadItems.do" title="방문열람관리"><span class="underline blue">- 방문열람관리</span></a></li>
|
<li><a href="javascript:void(0)" data-gotoUrl="${pageContext.request.contextPath}/read/listReadItems.do" title="방문열람관리"><span class="underline blue">- 방문열람관리</span></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
@ -8,8 +8,7 @@
|
|||||||
<html lang="ko">
|
<html lang="ko">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<meta name="format-detection" content="telephone=no" />
|
<meta name="format-detection" content="telephone=no" />
|
||||||
|
|
||||||
@ -30,7 +29,7 @@
|
|||||||
|
|
||||||
<title>소장자료관</title>
|
<title>소장자료관</title>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script>
|
||||||
// 제목 설정
|
// 제목 설정
|
||||||
function fn_setPageTitle(title) {
|
function fn_setPageTitle(title) {
|
||||||
document.title = "소장자료관 - " + title;
|
document.title = "소장자료관 - " + title;
|
||||||
@ -42,7 +41,7 @@ function fn_setPageTitle(title) {
|
|||||||
<body>
|
<body>
|
||||||
|
|
||||||
<!-- <div class="wrap sub"> sub는 서브페이지 -->
|
<!-- <div class="wrap sub"> sub는 서브페이지 -->
|
||||||
<div id="DIV_PAGE_MAIN" name="DIV_PAGE_MAIN" class="wrap sub">
|
<div id="DIV_PAGE_MAIN" class="wrap sub">
|
||||||
|
|
||||||
<!-- 헤더 -->
|
<!-- 헤더 -->
|
||||||
<header id="header">
|
<header id="header">
|
||||||
@ -64,7 +63,7 @@ function fn_setPageTitle(title) {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Layer Popup -->
|
<!-- Layer Popup -->
|
||||||
<div id="NLIB_LAYER_POPUP" name="NLIB_LAYER_POPUP" style="display:block;">
|
<div id="NLIB_LAYER_POPUP" style="display:block;">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@ -106,7 +106,7 @@
|
|||||||
<p><button type="button"><span class="name">김*화</span><span class="mail">mo******@naver.com</span></button></p>
|
<p><button type="button"><span class="name">김*화</span><span class="mail">mo******@naver.com</span></button></p>
|
||||||
</div>
|
</div>
|
||||||
<div class="box">
|
<div class="box">
|
||||||
<div class="icon"><img src="/images/icon/icon-kakao-login.png" alt="카카오 아이콘"></div>
|
<div class="icon kakao"><img src="/images/icon/icon-kakao-login.png" alt="카카오 아이콘"></div>
|
||||||
<div class="text">
|
<div class="text">
|
||||||
<p>mo******@daum.net</p>
|
<p>mo******@daum.net</p>
|
||||||
<p><span class="date">2021-07-15</span><span class="time">오후 2:41:30 연결완료</span></p>
|
<p><span class="date">2021-07-15</span><span class="time">오후 2:41:30 연결완료</span></p>
|
||||||
@ -118,6 +118,49 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="contents row-bottom">
|
||||||
|
<div class="join-box">
|
||||||
|
<div class="success">
|
||||||
|
<div class="text">
|
||||||
|
<p>선택하신 계정에 <span>네이버</span>계정이 연결되었습니다.</p>
|
||||||
|
<p><button type="button"><span class="name">김*화</span><span class="mail">mo******@naver.com</span></button></p>
|
||||||
|
</div>
|
||||||
|
<div class="box">
|
||||||
|
<div class="icon naver"><img src="/images/icon/icon-naver-login.png" alt="네이버 아이콘"></div>
|
||||||
|
<div class="text">
|
||||||
|
<p>mo******@daum.net</p>
|
||||||
|
<p><span class="date">2021-07-15</span><span class="time">오후 2:41:30 연결완료</span></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="btn">
|
||||||
|
<a href="/" class="btn-color">소장자료관으로</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="contents row-bottom">
|
||||||
|
<div class="join-box">
|
||||||
|
<div class="success">
|
||||||
|
<div class="text">
|
||||||
|
<p>선택하신 계정에 <span>구글</span>계정이 연결되었습니다.</p>
|
||||||
|
<p><button type="button"><span class="name">김*화</span><span class="mail">mo******@naver.com</span></button></p>
|
||||||
|
</div>
|
||||||
|
<div class="box">
|
||||||
|
<div class="icon google"><img src="/images/icon/icon-google-login.png" alt="구글 아이콘"></div>
|
||||||
|
<div class="text">
|
||||||
|
<p>mo******@daum.net</p>
|
||||||
|
<p><span class="date">2021-07-15</span><span class="time">오후 2:41:30 연결완료</span></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="btn">
|
||||||
|
<a href="/" class="btn-color">소장자료관으로</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@ -140,6 +140,8 @@ a.pop-logo img { margin-right: 10px; }
|
|||||||
.sec5 .inner .tabs_item ul li .con-1 .tit { font-size: 16px; }
|
.sec5 .inner .tabs_item ul li .con-1 .tit { font-size: 16px; }
|
||||||
.sec5 .inner .tabs_item ul li .con-2 p { font-size: 12px; }
|
.sec5 .inner .tabs_item ul li .con-2 p { font-size: 12px; }
|
||||||
.sec6 { padding: 52px 0px 60px; }
|
.sec6 { padding: 52px 0px 60px; }
|
||||||
|
.sec6 .inner .more-btn {top:0px;}
|
||||||
|
.sec6 .inner .more-btn a {font-size:12px;padding:2px 10px 3px;}
|
||||||
.popularSwiper .swiper-pagination { position: relative; }
|
.popularSwiper .swiper-pagination { position: relative; }
|
||||||
.popularSwiper .swiper-pagination-bullet { background: #aaaaaa; border-radius: 30px; margin-right: 4px; opacity: unset !important; }
|
.popularSwiper .swiper-pagination-bullet { background: #aaaaaa; border-radius: 30px; margin-right: 4px; opacity: unset !important; }
|
||||||
.popularSwiper .swiper-pagination-bullet-active { background: #376795; width: 35px; height: 10px; }
|
.popularSwiper .swiper-pagination-bullet-active { background: #376795; width: 35px; height: 10px; }
|
||||||
@ -403,7 +405,8 @@ a.pop-logo img { margin-right: 10px; }
|
|||||||
.article-side .filter-wrap { height: calc(100% - 125px); overflow: scroll; border: none; }
|
.article-side .filter-wrap { height: calc(100% - 125px); overflow: scroll; border: none; }
|
||||||
.culture-box { width: 100%; }
|
.culture-box { width: 100%; }
|
||||||
.data .mo_tabs_wrap { height: 50px; }
|
.data .mo_tabs_wrap { height: 50px; }
|
||||||
.data .inner .tabs { width: max-content; display: flex; }
|
.data .inner .tabs { /*width: max-content;*/ display: flex;white-space:nowrap;overflow-y:hidden;overflow-x:auto;text-align:center;height:50px; }
|
||||||
|
.data .inner .tabs li.current::before {bottom: calc(0% - -5px);}
|
||||||
.data .inner .tabs li a { border-radius: 0; border-right: none; }
|
.data .inner .tabs li a { border-radius: 0; border-right: none; }
|
||||||
.data .inner .tabs li:first-child a { border-top-left-radius: 3px; border-bottom-left-radius: 3px; }
|
.data .inner .tabs li:first-child a { border-top-left-radius: 3px; border-bottom-left-radius: 3px; }
|
||||||
.data .inner .tabs li:last-child a { border-right: 1px solid #ddd; border-top-right-radius: 3px; border-bottom-right-radius: 3px; }
|
.data .inner .tabs li:last-child a { border-right: 1px solid #ddd; border-top-right-radius: 3px; border-bottom-right-radius: 3px; }
|
||||||
@ -541,7 +544,8 @@ a.pop-logo img { margin-right: 10px; }
|
|||||||
.faq .contents,
|
.faq .contents,
|
||||||
.faq .inner .tab { width: 100%; }
|
.faq .inner .tab { width: 100%; }
|
||||||
.faq .mo_tabs_wrap { padding-left: 16px; box-sizing: border-box; height: 56px; }
|
.faq .mo_tabs_wrap { padding-left: 16px; box-sizing: border-box; height: 56px; }
|
||||||
.faq .inner .tabs { width: max-content; }
|
.faq .inner .tab_content {margin-top:20px;}
|
||||||
|
.faq .inner .tabs { /*width: max-content;*/ display: flex;white-space:nowrap;overflow-y:hidden;overflow-x:auto;text-align:center;height:50px; }
|
||||||
.faq .inner .tabs li { width: 130px; }
|
.faq .inner .tabs li { width: 130px; }
|
||||||
.faq .inner .tabs li a { border-radius: 0; }
|
.faq .inner .tabs li a { border-radius: 0; }
|
||||||
.faq .inner .tabs li:first-child a { border-top-left-radius: 3px; border-bottom-left-radius: 3px; }
|
.faq .inner .tabs li:first-child a { border-top-left-radius: 3px; border-bottom-left-radius: 3px; }
|
||||||
@ -567,6 +571,7 @@ a.pop-logo img { margin-right: 10px; }
|
|||||||
/* qna */
|
/* qna */
|
||||||
.qna .contents { width: 100%; min-height: 200px; padding-bottom: 40px; }
|
.qna .contents { width: 100%; min-height: 200px; padding-bottom: 40px; }
|
||||||
.qna .inner .tabs { width: 100%; padding: 0 16px; box-sizing: border-box; }
|
.qna .inner .tabs { width: 100%; padding: 0 16px; box-sizing: border-box; }
|
||||||
|
.qna .inner .tab_content {margin-top:20px;}
|
||||||
.qna .title { height: auto; margin-bottom: 0; }
|
.qna .title { height: auto; margin-bottom: 0; }
|
||||||
.list-search-wrap { display: flex; flex-direction: column-reverse; }
|
.list-search-wrap { display: flex; flex-direction: column-reverse; }
|
||||||
.data .list-search-wrap { flex-direction: column; }
|
.data .list-search-wrap { flex-direction: column; }
|
||||||
|
|||||||
BIN
src/main/webapp/images/img/img-guide-bg-mo.jpg
Normal file
BIN
src/main/webapp/images/img/img-guide-bg-mo.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 108 KiB |
@ -191,7 +191,7 @@ $(document).ready(function(){
|
|||||||
// Default settings
|
// Default settings
|
||||||
var defaults = {
|
var defaults = {
|
||||||
responsive: true,
|
responsive: true,
|
||||||
width: 768, // Responsive width
|
width: 480, // Responsive width
|
||||||
button: $(this).attr("id") + "-button", // Menu button id
|
button: $(this).attr("id") + "-button", // Menu button id
|
||||||
animation: {
|
animation: {
|
||||||
// Menu animation
|
// Menu animation
|
||||||
|
|||||||
@ -601,7 +601,7 @@ function gfn_getDetail(masterId, host) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
function gfn_rentItem(masterId) {
|
function gfn_rentItem(mngOrgCd, masterId) {
|
||||||
|
|
||||||
if(fn_isEmpty(masterId)) {
|
if(fn_isEmpty(masterId)) {
|
||||||
alert("자료ID 정보가 없습니다.");
|
alert("자료ID 정보가 없습니다.");
|
||||||
@ -611,13 +611,20 @@ function gfn_rentItem(masterId) {
|
|||||||
var form = document.createElement("form");
|
var form = document.createElement("form");
|
||||||
form.style.display = "none";
|
form.style.display = "none";
|
||||||
$(form).attr("action", "/rent/confirmRent.do");
|
$(form).attr("action", "/rent/confirmRent.do");
|
||||||
$(form).attr("method", "post");
|
$(form).attr("method", "get");
|
||||||
|
$(form).attr("target", "_blank");
|
||||||
|
|
||||||
var element = document.createElement("input");
|
var element1 = document.createElement("input");
|
||||||
$(element).attr("name", "selItems");
|
$(element1).attr("name", "mngOrgCd");
|
||||||
$(element).attr("value", masterId);
|
$(element1).attr("value", mngOrgCd);
|
||||||
|
|
||||||
|
var element2 = document.createElement("input");
|
||||||
|
$(element2).attr("name", "selItems");
|
||||||
|
$(element2).attr("value", masterId);
|
||||||
|
|
||||||
|
form.appendChild(element1);
|
||||||
|
form.appendChild(element2);
|
||||||
|
|
||||||
form.appendChild(element);
|
|
||||||
document.body.appendChild(form);
|
document.body.appendChild(form);
|
||||||
form.submit();
|
form.submit();
|
||||||
|
|
||||||
@ -626,7 +633,7 @@ function gfn_rentItem(masterId) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
function gfn_reserveReadItem(masterId) {
|
function gfn_reserveReadItem(mngOrgCd, masterId) {
|
||||||
|
|
||||||
if(fn_isEmpty(masterId)) {
|
if(fn_isEmpty(masterId)) {
|
||||||
alert("자료ID 정보가 없습니다.");
|
alert("자료ID 정보가 없습니다.");
|
||||||
@ -636,13 +643,20 @@ function gfn_reserveReadItem(masterId) {
|
|||||||
var form = document.createElement("form");
|
var form = document.createElement("form");
|
||||||
form.style.display = "none";
|
form.style.display = "none";
|
||||||
$(form).attr("action", "/read/confirmRead.do");
|
$(form).attr("action", "/read/confirmRead.do");
|
||||||
$(form).attr("method", "post");
|
$(form).attr("method", "get");
|
||||||
|
$(form).attr("target", "_blank");
|
||||||
|
|
||||||
var element = document.createElement("input");
|
var element1 = document.createElement("input");
|
||||||
$(element).attr("name", "selItems");
|
$(element1).attr("name", "mngOrgCd");
|
||||||
$(element).attr("value", masterId);
|
$(element1).attr("value", mngOrgCd);
|
||||||
|
|
||||||
|
var element2 = document.createElement("input");
|
||||||
|
$(element2).attr("name", "selItems");
|
||||||
|
$(element2).attr("value", masterId);
|
||||||
|
|
||||||
|
form.appendChild(element1);
|
||||||
|
form.appendChild(element2);
|
||||||
|
|
||||||
form.appendChild(element);
|
|
||||||
document.body.appendChild(form);
|
document.body.appendChild(form);
|
||||||
form.submit();
|
form.submit();
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user