커밋
This commit is contained in:
parent
4b6e3e4c35
commit
15acbbc190
@ -47,14 +47,14 @@
|
|||||||
<body>
|
<body>
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
//로그
|
//로그
|
||||||
$.ajax({
|
$.ajax({
|
||||||
type: "post",
|
type: "post",
|
||||||
url: "/search/InsertDataInquiryLog.ajax",
|
url: "/search/InsertDataInquiryLog.ajax",
|
||||||
data: {"masterId" : '<c:out value="${result.masterId}"/>'}
|
data: {"masterId" : '<c:out value="${result.masterId}"/>'}
|
||||||
}).done(function(response){
|
}).done(function(response){
|
||||||
});
|
});
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
@ -105,16 +105,16 @@ function goList(){
|
|||||||
<div class="left">
|
<div class="left">
|
||||||
<div class="cla">
|
<div class="cla">
|
||||||
<div class="con-1">
|
<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>
|
<span class="online">온라인열람</span>
|
||||||
</c:if>
|
</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>
|
<span class="loan">대출</span>
|
||||||
</c:if>
|
</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>
|
<span class="visit">방문열람</span>
|
||||||
</c:if>
|
</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>
|
<span class="etc">기타</span>
|
||||||
</c:if>
|
</c:if>
|
||||||
</div>
|
</div>
|
||||||
@ -234,11 +234,11 @@ function goList(){
|
|||||||
<button type="button" class="btn btn-orange" onclick="fn_addRentCart('${result.masterId}', '${result.useStatus}')">카트담기</button>
|
<button type="button" class="btn btn-orange" onclick="fn_addRentCart('${result.masterId}', '${result.useStatus}')">카트담기</button>
|
||||||
</div>
|
</div>
|
||||||
<c:if test="${fn:length(keywordList) > 0 }">
|
<c:if test="${fn:length(keywordList) > 0 }">
|
||||||
<div class="keyword">
|
<div class="keyword">
|
||||||
<span class="first">키워드</span>
|
<span class="first">키워드</span>
|
||||||
<c:forEach var="keyword" items="${keywordList }">
|
<c:forEach var="keyword" items="${keywordList }">
|
||||||
<span><c:out value="${keyword}"/></span>
|
<span><c:out value="${keyword}"/></span>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</div>
|
</div>
|
||||||
</c:if>
|
</c:if>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user