환불사유 마우스 호버시 노출 기능 추가

This commit is contained in:
itn 2023-08-28 14:40:48 +09:00
parent a558f0417e
commit 60fa108b56

View File

@ -25,9 +25,23 @@
<head> <head>
<title>환불 및 결제 취소 목록</title> <title>환불 및 결제 취소 목록</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8"> <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" src="<c:url value='/js/EgovMultiFile.js'/>"></script>
<script type="text/javaScript" language="javascript"> <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){ function linkPage(pageNo){
var listForm = document.listForm ; var listForm = document.listForm ;
listForm.pageIndex.value = pageNo; listForm.pageIndex.value = pageNo;
@ -257,14 +271,7 @@ function fnSelectMber(mberId) {
<c:out value="${result.mberNm}"/> <c:out value="${result.mberNm}"/>
</a> </a>
</td> </td>
<c:choose> <td>
<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>
<c:choose> <c:choose>
<c:when test="${result.refundReason eq '999'}"> <c:when test="${result.refundReason eq '999'}">
${result.refundReasonEtc} ${result.refundReasonEtc}
@ -304,19 +311,37 @@ function fnSelectMber(mberId) {
</td> </td>
<td title="<c:out value="${result.frstRegisterPnttm}"/>"> <td>
<fmt:parseDate value="${result.frstRegisterPnttm}" var="frstRegisterDateValue" pattern="yyyy-MM-dd HH:mm"/> <fmt:parseDate value="${result.frstRegisterPnttm}" var="frstRegisterDateValue" pattern="yyyy-MM-dd HH:mm"/>
<fmt:formatDate value="${frstRegisterDateValue}" pattern="MM-dd HH:mm"/> <fmt:formatDate value="${frstRegisterDateValue}" pattern="MM-dd HH:mm"/>
</td> </td>
<td title="<c:out value="${result.lastUpdtPnttm}"/>"> <td>
<fmt:parseDate value="${result.lastUpdtPnttm}" var="lastUpdtDateValue" pattern="yyyy-MM-dd HH:mm"/> <fmt:parseDate value="${result.lastUpdtPnttm}" var="lastUpdtDateValue" pattern="yyyy-MM-dd HH:mm"/>
<fmt:formatDate value="${lastUpdtDateValue}" pattern="MM-dd HH:mm"/> <fmt:formatDate value="${lastUpdtDateValue}" pattern="MM-dd HH:mm"/>
</td> </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> </tr>
</c:forEach> </c:forEach>
<c:if test="${empty refundList}"> <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> </c:if>
</tbody> </tbody>
</table> </table>