상세검색팝업 (개발중)
This commit is contained in:
parent
dd7ad03042
commit
c9daa8703e
@ -77,7 +77,7 @@ public class RisDAO extends EgovComAbstractDAO
|
|||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public RisVO selectRisInfo(RisVO vo) {
|
public RisVO selectRisInfo(RisVO vo) {
|
||||||
return selectOne("CollectionDAO.selectRisInfo", vo);
|
return selectOne("RisDAO.selectRisInfo", vo);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 문화원 목록 조회(검색필터용)
|
* 문화원 목록 조회(검색필터용)
|
||||||
|
|||||||
@ -68,7 +68,7 @@ public class RisController extends NlibCommonController
|
|||||||
@RequestMapping(value="/ris/risDownload.do")
|
@RequestMapping(value="/ris/risDownload.do")
|
||||||
public void risDownload(HttpServletRequest request,HttpServletResponse response) throws IOException {
|
public void risDownload(HttpServletRequest request,HttpServletResponse response) throws IOException {
|
||||||
RisVO vo = new RisVO();
|
RisVO vo = new RisVO();
|
||||||
vo.setMasterId(request.getParameter("masterId"));
|
vo.setMasterId(request.getParameter("risId"));
|
||||||
|
|
||||||
vo = risService.selectRisInfo(vo);
|
vo = risService.selectRisInfo(vo);
|
||||||
|
|
||||||
|
|||||||
@ -411,6 +411,25 @@ public class NlibSearchController extends NlibCommonController {
|
|||||||
|
|
||||||
return makeResponseEntityJson(retMap);
|
return makeResponseEntityJson(retMap);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 상세검색 팝업.
|
||||||
|
*
|
||||||
|
* (2021.10.19 YJS 추가)
|
||||||
|
*
|
||||||
|
* @param request
|
||||||
|
* @param model
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
@RequestMapping(value="/search/getDetailedSearchFormPopup.do")
|
||||||
|
public String getMemberQrcodeFormPopup(HttpServletRequest request, ModelMap model) {
|
||||||
|
|
||||||
|
NlibLoginVO loginVO = getNlibLoginVO(request);
|
||||||
|
|
||||||
|
model.addAttribute("loginVO", loginVO);
|
||||||
|
|
||||||
|
return "nlib/search/getDetailedSearchFormPopup";
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* 소장자료 상세 내용 조회한다.
|
* 소장자료 상세 내용 조회한다.
|
||||||
*
|
*
|
||||||
|
|||||||
@ -538,15 +538,16 @@ public class MemberController extends NlibCommonController{
|
|||||||
@RequestMapping(value="/member/mobileCertNum.ajax" , method=RequestMethod.POST)
|
@RequestMapping(value="/member/mobileCertNum.ajax" , method=RequestMethod.POST)
|
||||||
public @ResponseBody void phoneCertNum(HttpServletResponse response,Authentication authentication,HttpServletRequest request,HttpSession session) throws Exception{
|
public @ResponseBody void phoneCertNum(HttpServletResponse response,Authentication authentication,HttpServletRequest request,HttpSession session) throws Exception{
|
||||||
String mobileNo = request.getParameter("mobileNo");
|
String mobileNo = request.getParameter("mobileNo");
|
||||||
|
|
||||||
//회원가입페이지와 정보수정페이지의 프로세스 분기를위해 가져옴
|
//회원가입페이지와 정보수정페이지의 프로세스 분기를위해 가져옴
|
||||||
String pageName = request.getParameter("pageName");
|
String pageName = request.getParameter("pageName");
|
||||||
|
|
||||||
//인증번호 생성
|
//인증번호 생성
|
||||||
String CertNumber=memberService.numberGen(6,1);
|
String CertNumber=memberService.numberGen(6,1);
|
||||||
System.out.println(CertNumber);
|
|
||||||
//세션에 저장
|
//세션에 저장
|
||||||
String jsessionId = session.getId();
|
String jsessionId = session.getId();
|
||||||
|
|
||||||
|
|
||||||
//내 정보 페이지
|
//내 정보 페이지
|
||||||
if("myInfo".equals(pageName))
|
if("myInfo".equals(pageName))
|
||||||
{
|
{
|
||||||
@ -559,7 +560,7 @@ public class MemberController extends NlibCommonController{
|
|||||||
OAuthUniversalUser oauthUser = SessionConfig.getNewMemberInfo(jsessionId);
|
OAuthUniversalUser oauthUser = SessionConfig.getNewMemberInfo(jsessionId);
|
||||||
NlibLoginVO vo=oauthUser.getNlibVO();
|
NlibLoginVO vo=oauthUser.getNlibVO();
|
||||||
//이미 생성된 VO가 없을때
|
//이미 생성된 VO가 없을때
|
||||||
if(vo==null)
|
if(vo == null)
|
||||||
vo= new NlibLoginVO();
|
vo= new NlibLoginVO();
|
||||||
|
|
||||||
vo.setMobileNo(mobileNo);
|
vo.setMobileNo(mobileNo);
|
||||||
|
|||||||
@ -268,6 +268,9 @@ function fn_search_article(pageIndex) {
|
|||||||
<input type="button" style="width: 100px;" name="btnSearch" onclick="fn_tabMove_sch('rent_Coll');" value="대출()" />
|
<input type="button" style="width: 100px;" name="btnSearch" onclick="fn_tabMove_sch('rent_Coll');" value="대출()" />
|
||||||
<input type="button" style="width: 100px;" name="btnSearch" onclick="fn_tabMove_sch('online_Coll');" value="온라인열람()" />
|
<input type="button" style="width: 100px;" name="btnSearch" onclick="fn_tabMove_sch('online_Coll');" value="온라인열람()" />
|
||||||
<input type="button" style="width: 100px;" name="btnSearch" onclick="fn_tabMove_sch('etc_Coll);" value="기타()" />
|
<input type="button" style="width: 100px;" name="btnSearch" onclick="fn_tabMove_sch('etc_Coll);" value="기타()" />
|
||||||
|
|
||||||
|
<input type="button" onclick="insertInterest('UR-2AAA037F482D45E1A720F3152F10C008');" value="관심">
|
||||||
|
<input type="button" onclick="risShow('UR-2AAA037F482D45E1A720F3152F10C008');" value="RIS">
|
||||||
</div>
|
</div>
|
||||||
<div style="text-align: left;">
|
<div style="text-align: left;">
|
||||||
<div id="searchMenu" style="display: inline-block; width: 200px; margin-top: 5px; vertical-align: top;">
|
<div id="searchMenu" style="display: inline-block; width: 200px; margin-top: 5px; vertical-align: top;">
|
||||||
|
|||||||
@ -0,0 +1,319 @@
|
|||||||
|
<%
|
||||||
|
/**
|
||||||
|
* <pre>
|
||||||
|
* @Class Name : getDetailedSearchFormPopup.jsp
|
||||||
|
*
|
||||||
|
* @Description : 상세검색 팝업
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @프로젝트명: 지방문화원 통합자료관리시스템 구축사업 (2021)
|
||||||
|
*
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
* @ ------------ -------- ---------------------------
|
||||||
|
* @ 수정일 수정자 수정내용
|
||||||
|
* @ ------------ -------- ---------------------------
|
||||||
|
* @ 2021. 10. 19. JSYOO 최초 생성
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @author 이씨플라자 * DIGITALSHIP JSYOO
|
||||||
|
* @since 2021. 10. 19.
|
||||||
|
* @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>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
|
<script type="text/javaScript" language="javascript">
|
||||||
|
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="popup pop-advanced-search" style="display:none;">
|
||||||
|
<div class="pop-wrap">
|
||||||
|
<div class="Title">
|
||||||
|
<span>상세 검색</span>
|
||||||
|
<span>검색어와, 검색조건들을 통해서 더 정확한 정보를 찾아보세요.</span>
|
||||||
|
<span><a href="javascript:;" class="btn-close-pop"><img src="/images/btn/btn-pop-close.png" alt="닫기 아이콘"></a></span>
|
||||||
|
</div>
|
||||||
|
<form action="/sch/totalSearchList.do" id="cmmlistForm" name="cmmlistForm" class="mCustomScrollbar" data-mcs-theme="dark-2">
|
||||||
|
<div class="scroll-wrap">
|
||||||
|
<fieldset>
|
||||||
|
<legend>상세검색 입력폼</legend>
|
||||||
|
<ul class="advanced-form-table">
|
||||||
|
<li class="row-keyword fw">
|
||||||
|
<p class="tit"><label for="d_query">검 색</label></p>
|
||||||
|
<div class="input-area">
|
||||||
|
<input type="text" placeholder="검색어를 입력하세요." id="d_query" name="query" value="" />
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="row-keyword-detail">
|
||||||
|
<p class="tit"><label for="exactQuery">목차검색</label></p>
|
||||||
|
<div class="input-area">
|
||||||
|
<input type="text" placeholder="검색어를 입력하세요." id="exactQuery" name="exactQuery" value="" />
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="row-control-num">
|
||||||
|
<p class="tit"><label for="mgnt_no">관리번호</label></p>
|
||||||
|
<div class="input-area">
|
||||||
|
<input type="text" placeholder="예) KCCF201808030000234" id="mgnt_no" name="mgnt_no" value="" />
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="row-issued-year">
|
||||||
|
<p class="tit"><label for="genyear_start">생산년도</label></p>
|
||||||
|
<div class="input-area">
|
||||||
|
<input type="text" placeholder="예) 2018" id="genyear_start" name="genyear_start" value="" />
|
||||||
|
<span class="tilde">~</span>
|
||||||
|
<input type="text" placeholder="예) 2019" id="genyear_end" name="genyear_end" value="" /><label for="genyear_end" class="blind">생산년도 끝</label>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="row-age">
|
||||||
|
<p class="tit"><label for="chronological_start">연 대</label></p>
|
||||||
|
<div class="input-area">
|
||||||
|
<input type="text" placeholder="예) 2017" id="chronological_start" name="chronological_start" value=""/>
|
||||||
|
<span class="tilde">~</span>
|
||||||
|
<input type="text" placeholder="예) 2018" id="chronological_end" name="chronological_end" value=""/><label for="chronological_end" class="blind">연대 끝</label>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="row-times fw">
|
||||||
|
<p class="tit"><label for="">시 대</label></p>
|
||||||
|
<div class="input-area">
|
||||||
|
<div class="check"><input type="checkbox" value="" id="times-chk1" name=""><label for="times-chk1">전체</label></div>
|
||||||
|
<div class="check"><input type="checkbox" value="" id="times-chk2" name=""><label for="times-chk2">선사</label></div>
|
||||||
|
<div class="check"><input type="checkbox" value="" id="times-chk3" name=""><label for="times-chk3">고대</label></div>
|
||||||
|
<div class="check"><input type="checkbox" value="" id="times-chk4" name=""><label for="times-chk4">고려</label></div>
|
||||||
|
<div class="check"><input type="checkbox" value="" id="times-chk5" name=""><label for="times-chk5">조선</label></div>
|
||||||
|
<div class="check"><input type="checkbox" value="" id="times-chk6" name=""><label for="times-chk6">근대</label></div>
|
||||||
|
<div class="check"><input type="checkbox" value="" id="times-chk7" name=""><label for="times-chk7">현대</label></div>
|
||||||
|
<div class="check"><input type="checkbox" value="" id="times-chk8" name=""><label for="times-chk8">시대미상</label></div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="row-class fw">
|
||||||
|
<p class="tit"><label for="">이용구분</label></p>
|
||||||
|
<div class="input-area">
|
||||||
|
<div class="check"><input type="checkbox" value="" id="class-chk1" name=""><label for="class-chk1">전체</label></div>
|
||||||
|
<div class="check"><input type="checkbox" value="" id="class-chk2" name=""><label for="class-chk2">온라인 열람</label></div>
|
||||||
|
<div class="check"><input type="checkbox" value="" id="class-chk3" name=""><label for="class-chk3">대출</label></div>
|
||||||
|
<div class="check"><input type="checkbox" value="" id="class-chk4" name=""><label for="class-chk4">열람</label></div>
|
||||||
|
<div class="check"><input type="checkbox" value="" id="class-chk5" name=""><label for="class-chk5">기타</label></div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</fieldset>
|
||||||
|
|
||||||
|
<fieldset class="conditions-wrap conditions-subject">
|
||||||
|
<legend class="conditions-title">주제분야</legend>
|
||||||
|
<div class="selected-conditions">
|
||||||
|
<div class="title">
|
||||||
|
<p>선택조건</p>
|
||||||
|
<button type="button" class="btn-reset-conditions">초기화</button>
|
||||||
|
</div>
|
||||||
|
<ul class="conditions">
|
||||||
|
<li><button type="button" title="삭제">자연과 지리 <span class="sign">></span> 마을경관</button></li>
|
||||||
|
<li><button type="button" title="삭제">생활과 민속 <span class="sign">></span> 세시풍속</button></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="conditions-box">
|
||||||
|
<div class="line line1">
|
||||||
|
<div class="depth1">
|
||||||
|
<div class="depth1-check check tab"><input type="checkbox" value="A" id="subject-chk1" /><label for="subject-chk1">자연과지리</label></div>
|
||||||
|
<ul class="depth2">
|
||||||
|
<li><div class="check"><input type="checkbox" value="A01" id="subject-chk1-1" /><label for="subject-chk1-1">자연환경</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="A02" id="subject-chk1-2" /><label for="subject-chk1-2">동식물</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="A03" id="subject-chk1-3" /><label for="subject-chk1-3">마을경관</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="A04" id="subject-chk1-4" /><label for="subject-chk1-4">향토지</label></div></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="depth1">
|
||||||
|
<div class="depth1-check check tab"><input type="checkbox" value="B" id="subject-chk2" /><label for="subject-chk2">지방의역사</label></div>
|
||||||
|
<ul class="depth2">
|
||||||
|
<li><div class="check"><input type="checkbox" value="B01" id="subject-chk2-1" /><label for="subject-chk2-1">선사</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="B02" id="subject-chk2-2" /><label for="subject-chk2-2">삼국~통일신라</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="B03" id="subject-chk2-3" /><label for="subject-chk2-3">고려</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="B04" id="subject-chk2-4" /><label for="subject-chk2-4">조선</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="B05" id="subject-chk2-5" /><label for="subject-chk2-5">개항기(1876~1910)</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="B06" id="subject-chk2-6" /><label for="subject-chk2-6">일제강점기</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="B07" id="subject-chk2-7" /><label for="subject-chk2-7">현대</label></div></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="depth1">
|
||||||
|
<div class="depth1-check check tab"><input type="checkbox" value="C" id="subject-chk3" /><label for="subject-chk3">문화유산</label></div>
|
||||||
|
<ul class="depth2">
|
||||||
|
<li><div class="check"><input type="checkbox" value="C01" id="subject-chk3-1" /><label for="subject-chk3-1">선사 유적 및 유물</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="C02" id="subject-chk3-2" /><label for="subject-chk3-2">건축유적</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="C03" id="subject-chk3-3" /><label for="subject-chk3-3">조각</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="C04" id="subject-chk3-4" /><label for="subject-chk3-4">서화</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="C05" id="subject-chk3-5" /><label for="subject-chk3-5">공예</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="C06" id="subject-chk3-6" /><label for="subject-chk3-6">기타</label></div></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="depth1">
|
||||||
|
<div class="depth1-check check tab"><input type="checkbox" value="D" id="subject-chk4" /><label for="subject-chk4">성씨와 인물</label></div>
|
||||||
|
<ul class="depth2">
|
||||||
|
<li><div class="check"><input type="checkbox" value="D01" id="subject-chk4-1" /><label for="subject-chk4-1">주민</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="D02" id="subject-chk4-2" /><label for="subject-chk4-2">성씨</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="D03" id="subject-chk4-3" /><label for="subject-chk4-3">인물</label></div></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="depth1">
|
||||||
|
<div class="depth1-check check tab"><input type="checkbox" value="E" id="subject-chk5" /><label for="subject-chk5">정치와 행정</label></div>
|
||||||
|
<ul class="depth2">
|
||||||
|
<li><div class="check"><input type="checkbox" value="E01" id="subject-chk5-1" /><label for="subject-chk5-1">지방정치</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="E02" id="subject-chk5-2" /><label for="subject-chk5-2">지방행정</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="E03" id="subject-chk5-3" /><label for="subject-chk5-3">사법 및 치안</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="E04" id="subject-chk5-4" /><label for="subject-chk5-4">지역사회운동</label></div></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="depth1">
|
||||||
|
<div class="depth1-check check tab"><input type="checkbox" value="F" id="subject-chk6" /><label for="subject-chk6">경제와 산업</label></div>
|
||||||
|
<ul class="depth2">
|
||||||
|
<li><div class="check"><input type="checkbox" value="F01" id="subject-chk6-1" /><label for="subject-chk6-1">총론</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="F02" id="subject-chk6-2" /><label for="subject-chk6-2">농림수산업</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="F03" id="subject-chk6-3" /><label for="subject-chk6-3">광공업</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="F04" id="subject-chk6-4" /><label for="subject-chk6-4">금융 및 보험업</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="F05" id="subject-chk6-5" /><label for="subject-chk6-5">상업 및 서비스업</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="F06" id="subject-chk6-6" /><label for="subject-chk6-6">교통, 통신 및 건설업</label></div></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="depth1">
|
||||||
|
<div class="depth1-check check tab"><input type="checkbox" value="G" id="subject-chk7" /><label for="subject-chk7">종교와 문화</label></div>
|
||||||
|
<ul class="depth2">
|
||||||
|
<li><div class="check"><input type="checkbox" value="G01" id="subject-chk7-1" /><label for="subject-chk7-1">종교</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="G02" id="subject-chk7-2" /><label for="subject-chk7-2">교육</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="G03" id="subject-chk7-3" /><label for="subject-chk7-3">문화예술</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="G04" id="subject-chk7-4" /><label for="subject-chk7-4">언론</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="G05" id="subject-chk7-5" /><label for="subject-chk7-5">체육</label></div></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="depth1">
|
||||||
|
<div class="depth1-check check tab"><input type="checkbox" value="H" id="subject-chk8" /><label for="subject-chk8">생할과 민속</label></div>
|
||||||
|
<ul class="depth2">
|
||||||
|
<li><div class="check"><input type="checkbox" value="H01" id="subject-chk8-1" /><label for="subject-chk8-1">생활</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="H02" id="subject-chk8-2" /><label for="subject-chk8-2">민속</label></div></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="depth1">
|
||||||
|
<div class="depth1-check check tab"><input type="checkbox" value="I" id="subject-chk9" /><label for="subject-chk9">구비전승어문학</label></div>
|
||||||
|
<ul class="depth2">
|
||||||
|
<li><div class="check"><input type="checkbox" value="I01" id="subject-chk9-1" /><label for="subject-chk9-1">지명유래</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="I02" id="subject-chk9-2" /><label for="subject-chk9-2">어문학</label></div></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div><!-- //line-1 -->
|
||||||
|
</div>
|
||||||
|
</fieldset>
|
||||||
|
|
||||||
|
<fieldset class="conditions-wrap conditions-datype">
|
||||||
|
<legend class="conditions-title">자료유형</legend>
|
||||||
|
<div class="selected-conditions">
|
||||||
|
<div class="title">
|
||||||
|
<p>선택조건</p>
|
||||||
|
<button type="button" class="btn-reset-conditions">초기화</button>
|
||||||
|
</div>
|
||||||
|
<ul class="conditions">
|
||||||
|
<li><button type="button" title="삭제">도서간행물 <span class="sign">></span> 단행본</button></li>
|
||||||
|
<li><button type="button" title="삭제">도서간행물 <span class="sign">></span> 보고서</button></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="conditions-box">
|
||||||
|
<div class="line line1">
|
||||||
|
<div class="depth1">
|
||||||
|
<div class="depth1-check check tab"><input type="checkbox" value="A" id="datype-chk1" /><label for="datype-chk1">도서간행물</label></div>
|
||||||
|
<ul class="depth2">
|
||||||
|
<li><div class="check"><input type="checkbox" value="A01" id="datype-chk1-1" /><label for="datype-chk1-1">총서·총류</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="A02" id="datype-chk1-2" /><label for="datype-chk1-2">단행본</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="A03" id="datype-chk1-3" /><label for="datype-chk1-3">보고서</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="A04" id="datype-chk1-4" /><label for="datype-chk1-4">자료집</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="A05" id="datype-chk1-5" /><label for="datype-chk1-5">연속간행물</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="A06" id="datype-chk1-6" /><label for="datype-chk1-6">고서적</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="A99" id="datype-chk1-7" /><label for="datype-chk1-7">기타</label></div></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="depth1">
|
||||||
|
<div class="depth1-check check tab"><input type="checkbox" value="B" id="datype-chk2" /><label for="datype-chk2">문서</label></div>
|
||||||
|
<ul class="depth2">
|
||||||
|
<li><div class="check"><input type="checkbox" value="B01" id="datype-chk2-1" /><label for="datype-chk2-1">고문서</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="B02" id="datype-chk2-2" /><label for="datype-chk2-2">일반문서</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="B03" id="datype-chk2-3" /><label for="datype-chk2-3">행정문서</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="B04" id="datype-chk2-4" /><label for="datype-chk2-4">보고서</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="B05" id="datype-chk2-5" /><label for="datype-chk2-5">자료집</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="B99" id="datype-chk2-6" /><label for="datype-chk2-6">기타</label></div></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="depth1">
|
||||||
|
<div class="depth1-check check tab"><input type="checkbox" value="C" id="datype-chk3" /><label for="datype-chk3">시청각물</label></div>
|
||||||
|
<ul class="depth2">
|
||||||
|
<li><div class="check"><input type="checkbox" value="C01" id="datype-chk3-1" /><label for="datype-chk3-1">사진</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="C02" id="datype-chk3-2" /><label for="datype-chk3-2">동영상</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="C03" id="datype-chk3-3" /><label for="datype-chk3-3">음원</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="C04" id="datype-chk3-4" /><label for="datype-chk3-4">전자책(PDF, PPT 등)</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="C99" id="datype-chk3-5" /><label for="datype-chk3-5">기타</label></div></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="depth1">
|
||||||
|
<div class="depth1-check check tab"><input type="checkbox" value="D" id="datype-chk4" /><label for="datype-chk4">도안</label></div>
|
||||||
|
<ul class="depth2">
|
||||||
|
<li><div class="check"><input type="checkbox" value="D01" id="datype-chk4-1" /><label for="datype-chk4-1">지도</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="D02" id="datype-chk4-2" /><label for="datype-chk4-2">도면</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="D03" id="datype-chk4-3" /><label for="datype-chk4-3">탁본</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="D99" id="datype-chk4-4" /><label for="datype-chk4-4">기타</label></div></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="depth1">
|
||||||
|
<div class="depth1-check check tab"><input type="checkbox" value="E" id="datype-chk5" /><label for="datype-chk5">박물</label></div>
|
||||||
|
<ul class="depth2">
|
||||||
|
<li><div class="check"><input type="checkbox" value="E01" id="datype-chk5-1" /><label for="datype-chk5-1">서화</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="E02" id="datype-chk5-2" /><label for="datype-chk5-2">조각ㆍ공예품</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="E03" id="datype-chk5-3" /><label for="datype-chk5-3">민속용구</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="E04" id="datype-chk5-4" /><label for="datype-chk5-4">행정박물</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="E05" id="datype-chk5-5" /><label for="datype-chk5-5">상장</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="E06" id="datype-chk5-6" /><label for="datype-chk5-6">VR</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="E07" id="datype-chk5-7" /><label for="datype-chk5-7">AR</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="E08" id="datype-chk5-8" /><label for="datype-chk5-8">3D 스캔</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="E99" id="datype-chk5-9" /><label for="datype-chk5-9">기타</label></div></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="depth1">
|
||||||
|
<div class="depth1-check check tab"><input type="checkbox" value="G" id="datype-chk6" /><label for="datype-chk6">웹정보자료</label></div>
|
||||||
|
<ul class="depth2">
|
||||||
|
<li><div class="check"><input type="checkbox" value="G01" id="datype-chk6-1" /><label for="datype-chk6-1">웹콘텐츠</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="G02" id="datype-chk6-2" /><label for="datype-chk6-2">외부자료링크</label></div></li>
|
||||||
|
<li><div class="check"><input type="checkbox" value="G03" id="datype-chk6-3" /><label for="datype-chk6-3">웹사이트</label></div></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="depth1">
|
||||||
|
<div class="depth1-check check tab"><input type="checkbox" value="F" id="datype-chk7" /><label for="datype-chk7">기타</label></div>
|
||||||
|
<ul class="depth2">
|
||||||
|
<li><div class="check"><input type="checkbox" value="F99" id="datype-chk7-1" /><label for="datype-chk7-1">기타</label></div></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div><!-- //line-1 -->
|
||||||
|
</div>
|
||||||
|
</fieldset>
|
||||||
|
|
||||||
|
</div><!-- //scroll-wrap -->
|
||||||
|
<div class="btn-wrap">
|
||||||
|
<button type="button" class="btn btn-white" id="cmm_popudp_del">초기화</button>
|
||||||
|
<button type="button" class="btn btn-color" id="cmm_popudp_submit">검색</button>
|
||||||
|
<button type="button" class="btn btn-gray btn-close-pop">닫기</button>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@ -28,7 +28,7 @@ String councilNm = (String)session.getAttribute("councilNm");
|
|||||||
<div class="search-input">
|
<div class="search-input">
|
||||||
<input type="text" placeholder="" title="검색어 입력" name="query" id="query" class="ark_query" value="" autocomplete="off">
|
<input type="text" placeholder="" title="검색어 입력" name="query" id="query" class="ark_query" value="" autocomplete="off">
|
||||||
<button type="button" class="btn-search" id="searchHeaderButton"><span>검색</span></button>
|
<button type="button" class="btn-search" id="searchHeaderButton"><span>검색</span></button>
|
||||||
<button type="button" class="btn-search-detail" id="btn-search-detail-cl">상세검색</button>
|
<button type="button" class="btn-search-detail" id="btn-search-detail-cl" onclick="javascript:fn_layerPop('${pageContext.request.contextPath}/search/getDetailedSearchFormPopup.do');">상세검색</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="condition_sear">
|
<div class="condition_sear">
|
||||||
<select name="searchField" id="searchField1" class="sear_depth">
|
<select name="searchField" id="searchField1" class="sear_depth">
|
||||||
|
|||||||
@ -164,6 +164,7 @@ function risShow(risId){
|
|||||||
document.getElementById("export-data").className="popup pop-user-set pop-export";
|
document.getElementById("export-data").className="popup pop-user-set pop-export";
|
||||||
|
|
||||||
var html="";
|
var html="";
|
||||||
|
html+='<form name="risDownloadForm" id="risDownloadForm" method="post"/><input type="hidden" id="risId" name="risId"></form>';
|
||||||
html+='<div class="pop-wrap">';
|
html+='<div class="pop-wrap">';
|
||||||
html+='<div class="pop-inner-wrap">';
|
html+='<div class="pop-inner-wrap">';
|
||||||
html+='<h1>서지정보 내보내기 (Export)</h1>';
|
html+='<h1>서지정보 내보내기 (Export)</h1>';
|
||||||
@ -208,10 +209,10 @@ function risClose(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
function risDownload(risId){
|
function risDownload(risId){
|
||||||
$("#masterId").val(risId);
|
$("#risId").val(risId);
|
||||||
|
|
||||||
document.interestsForm.action="/ris/risDownload.do";
|
document.risDownloadForm.action="/ris/risDownload.do";
|
||||||
document.interestsForm.submit();
|
document.risDownloadForm.submit();
|
||||||
}
|
}
|
||||||
|
|
||||||
function insertInterest(masterId){
|
function insertInterest(masterId){
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user