This commit is contained in:
JSYOO 2021-11-18 15:42:01 +09:00
parent 4b6e3e4c35
commit 15acbbc190

View File

@ -47,14 +47,14 @@
<body>
<script>
$(document).ready(function(){
//로그
$.ajax({
//로그
$.ajax({
type: "post",
url: "/search/InsertDataInquiryLog.ajax",
data: {"masterId" : '<c:out value="${result.masterId}"/>'}
}).done(function(response){
});
})
@ -105,16 +105,16 @@ function goList(){
<div class="left">
<div class="cla">
<div class="con-1">
<c:if test="${(!empty result.openDivCd) && (result.openDivCd ne '3') }">
<c:if test="${!empty result.openDivCd && result.openDivCd ne '3' && result.operReadRangeCd eq '01' && result.digitalReadYn eq 'Y'}">
<span class="online">온라인열람</span>
</c:if>
<c:if test="${(!empty result.operOutRangeCd) && (result.operOutRangeCd ne '02')}">
<c:if test="${!empty result.openDivCd && result.openDivCd ne '3' && !empty result.operOutRangeCd && result.operOutRangeCd ne '02'}">
<span class="loan">대출</span>
</c:if>
<c:if test="${(!empty result.operReadRangeCd) && (result.operReadRangeCd ne '03')}">
<c:if test="${!empty result.openDivCd && result.openDivCd ne '3' && !empty result.operReadRangeCd && result.operReadRangeCd ne '03'}">
<span class="visit">방문열람</span>
</c:if>
<c:if test="${!((!empty result.openDivCd) && (result.openDivCd ne '3')) && !((!empty result.operOutRangeCd) && (result.operOutRangeCd ne '02')) && !((!empty result.operReadRangeCd) && (result.operReadRangeCd ne '03')) }">
<c:if test="${!(!empty result.openDivCd && result.openDivCd ne '3') && !(result.operReadRangeCd eq '01' && result.digitalReadYn eq 'Y') && !(!empty result.operOutRangeCd && result.operOutRangeCd ne '02') && !(!empty result.operReadRangeCd && result.operReadRangeCd ne '03') }">
<span class="etc">기타</span>
</c:if>
</div>
@ -234,11 +234,11 @@ function goList(){
<button type="button" class="btn btn-orange" onclick="fn_addRentCart('${result.masterId}', '${result.useStatus}')">카트담기</button>
</div>
<c:if test="${fn:length(keywordList) > 0 }">
<div class="keyword">
<span class="first">키워드</span>
<c:forEach var="keyword" items="${keywordList }">
<span><c:out value="${keyword}"/></span>
</c:forEach>
<div class="keyword">
<span class="first">키워드</span>
<c:forEach var="keyword" items="${keywordList }">
<span><c:out value="${keyword}"/></span>
</c:forEach>
</div>
</c:if>
</div>