환불사유 마우스 호버시 노출 기능 추가
This commit is contained in:
parent
a558f0417e
commit
60fa108b56
@ -25,9 +25,23 @@
|
||||
<head>
|
||||
<title>환불 및 결제 취소 목록</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<style>
|
||||
|
||||
</style>
|
||||
|
||||
<script type="text/javascript" src="<c:url value='/js/EgovMultiFile.js'/>"></script>
|
||||
<script type="text/javaScript" language="javascript">
|
||||
|
||||
$(function(){
|
||||
$('.pageCont .tbType1 tbody tr').mouseover(function(){
|
||||
$(this).mousemove(function(e){
|
||||
var x=e.pageX+15;
|
||||
var y=e.pageY+15;
|
||||
$(this).closest('tr').next('.biz_hover_wrap').find('.biz_hover_content').css({'top':y,'left':x});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
function linkPage(pageNo){
|
||||
var listForm = document.listForm ;
|
||||
listForm.pageIndex.value = pageNo;
|
||||
@ -257,14 +271,7 @@ function fnSelectMber(mberId) {
|
||||
<c:out value="${result.mberNm}"/>
|
||||
</a>
|
||||
</td>
|
||||
<c:choose>
|
||||
<c:when test="${result.refundReason eq '999'}">
|
||||
<td title="${result.refundReasonEtc}">
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<td title="<ec:code code="${result.refundReason}" codeId="ITN050"/>">
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
<td>
|
||||
<c:choose>
|
||||
<c:when test="${result.refundReason eq '999'}">
|
||||
${result.refundReasonEtc}
|
||||
@ -304,19 +311,37 @@ function fnSelectMber(mberId) {
|
||||
|
||||
</td>
|
||||
|
||||
<td title="<c:out value="${result.frstRegisterPnttm}"/>">
|
||||
<td>
|
||||
<fmt:parseDate value="${result.frstRegisterPnttm}" var="frstRegisterDateValue" pattern="yyyy-MM-dd HH:mm"/>
|
||||
<fmt:formatDate value="${frstRegisterDateValue}" pattern="MM-dd HH:mm"/>
|
||||
</td>
|
||||
<td title="<c:out value="${result.lastUpdtPnttm}"/>">
|
||||
<td>
|
||||
<fmt:parseDate value="${result.lastUpdtPnttm}" var="lastUpdtDateValue" pattern="yyyy-MM-dd HH:mm"/>
|
||||
<fmt:formatDate value="${lastUpdtDateValue}" pattern="MM-dd HH:mm"/>
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
<tr class="biz_hover_wrap">
|
||||
<td colspan="10">
|
||||
<div class="biz_hover_content">
|
||||
<dl>
|
||||
<dt>환불사유</dt>
|
||||
<dd>
|
||||
<c:choose>
|
||||
<c:when test="${result.refundReason eq '999'}">
|
||||
${result.refundReasonEtc}
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<ec:code code="${result.refundReason}" codeId="ITN050"/>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</c:forEach>
|
||||
<c:if test="${empty refundList}">
|
||||
<tr><td colspan="13"><spring:message code="common.nodata.msg" /></td></tr>
|
||||
<tr><td colspan="10"><spring:message code="common.nodata.msg" /></td></tr>
|
||||
</c:if>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user