커밋
This commit is contained in:
parent
4b6e3e4c35
commit
15acbbc190
@ -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>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user