2024-10-30 14:07 오시는길
This commit is contained in:
parent
1fbcbff10d
commit
2273f3cce5
@ -1154,13 +1154,13 @@
|
||||
FROM LETTNLOGINLOG A
|
||||
WHERE 1=1
|
||||
<isNotEmpty prepend="AND" property="searchKeyword">
|
||||
a.menu_nm LIKE CONCAT('%',#searchKeyword#,'%')
|
||||
a.menu_nm LIKE '%'||#searchKeyword#||'%'
|
||||
</isNotEmpty>
|
||||
<isNotEmpty prepend="AND" property="searchStartDt">
|
||||
a.creat_dt >= TO_DATETIME(CONCAT (#searchStartDt#,' 00:00:00'),'YYYY-MM-DD HH24:MI:SS')
|
||||
a.creat_dt >= TO_DATE(#searchStartDt#||' 00:00:00','YYYY-MM-DD HH24:MI:SS')
|
||||
</isNotEmpty>
|
||||
<isNotEmpty prepend="AND" property="searchEndDt">
|
||||
TO_DATETIME(CONCAT (#searchEndDt#,' 23:59:59'),'YYYY-MM-DD HH24:MI:SS') >= a.creat_dt
|
||||
TO_DATE(#searchEndDt#||' 23:59:59','YYYY-MM-DD HH24:MI:SS') >= a.creat_dt
|
||||
</isNotEmpty>
|
||||
|
||||
GROUP BY menu_nm
|
||||
|
||||
@ -30,6 +30,32 @@
|
||||
<script type="module" src="/kofair_case_seed/script/plugin/datapicker/duet.esm.js"></script>
|
||||
<script src="/kofair_case_seed/script/plugin/datapicker/duet.system.js"></script>
|
||||
|
||||
<!-- js -->
|
||||
<script src="/js/lib/jquery-1.9.1.min.js"></script>
|
||||
<script src="/js/lib/jquery-migrate-1.2.1.min.js"></script>
|
||||
<script src="/js/lib/jquery-ui.min.js"></script>
|
||||
<script src="/js/lib/jquery.blockUI.js"></script>
|
||||
<script src="/js/date.format.js"></script>
|
||||
<script src="/js/jquery.slides.min.js"></script>
|
||||
<script src="/js/owl.carousel.min.js"></script>
|
||||
<script src="/js/jquery.mousewheel.min.js"></script>
|
||||
<script src="/js/statistics.js"></script>
|
||||
<script src="/js/captcha.js"></script>
|
||||
<script src="/js/canvas.js"></script>
|
||||
<script src="/js/jquery.PrintArea.js_4.js"></script>
|
||||
<script src="/js/jquery.printElement.js"></script>
|
||||
|
||||
<script src="/js/lib/jquery.bxslider.min.js"></script>
|
||||
<script src="/js/lib/picker.js"></script>
|
||||
<script src="/js/lib/picker.date.js"></script>
|
||||
<script src="/js/lib/legacy.js"></script>
|
||||
<script src="/js/lib/slick.min.js"></script>
|
||||
<script src="/js/seed.user.app.js"></script>
|
||||
|
||||
<script src="/js/common_XHR.js"></script>
|
||||
<script src="/js/common.js"></script>
|
||||
<script src="/js/jquery.selectboxes.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){
|
||||
caseGubunCombo();
|
||||
@ -89,8 +115,12 @@
|
||||
<p class="sub_con_sub_tit">법률상담 메뉴에서 신청한 신청건에 대하여 조회 및 처리 상태를 확인 하실 수 있습니다.</p>
|
||||
|
||||
<!-- search -->
|
||||
<form id="searchFrm" name="searchFrm" action="" method="get">
|
||||
<input type="hidden" name="page" value="1">
|
||||
<ul class="search_wrap">
|
||||
|
||||
|
||||
|
||||
<li>
|
||||
· 등록일시
|
||||
<div class="calendar_wrap calendar_term">
|
||||
@ -104,33 +134,39 @@
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<select name="searchType" id="searchType" title="조정유형 선택" class="select">
|
||||
<option value="">조정유형 선택</option>
|
||||
<option value="0201000000">공정거래분쟁</option>
|
||||
<option value="0202000000">가맹사업거래분쟁</option>
|
||||
<option value="0203000000">하도급거래분쟁</option>
|
||||
<option value="0204000000">대규모유통업</option>
|
||||
<option value="0205000000">약관분쟁</option>
|
||||
<option value="0206000000">대리점분쟁</option>
|
||||
<option value="0207000000">기타</option>
|
||||
</select>
|
||||
<select class="select" name="searchType" id="searchType" title="조정유형 선택">
|
||||
<option value="">조정유형</option>
|
||||
</select>
|
||||
<!--
|
||||
<select name="searchType" id="searchType" title="조정유형 선택" class="select">
|
||||
<option value="">조정유형 선택</option>
|
||||
<option value="0201000000">공정거래분쟁</option>
|
||||
<option value="0202000000">가맹사업거래분쟁</option>
|
||||
<option value="0203000000">하도급거래분쟁</option>
|
||||
<option value="0204000000">대규모유통업</option>
|
||||
<option value="0205000000">약관분쟁</option>
|
||||
<option value="0206000000">대리점분쟁</option>
|
||||
<option value="0207000000">기타</option>
|
||||
</select>
|
||||
-->
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<select class="select" name="searchReserve" id="searchReserve" title="예약여부 선택">
|
||||
<option value="">선택하세요</option>
|
||||
<option value="Y" <c:if test="${param.searchReserve == 'Y' }">selected="selected"</c:if>>Y</option>
|
||||
<option value="N" <c:if test="${param.searchReserve == 'N' }">selected="selected"</c:if>>N</option>
|
||||
<option value="">예약여부</option>
|
||||
<option value="Y" <c:if test="${param.searchReserve == 'Y' }">selected="selected"</c:if>>확정</option>
|
||||
<option value="N" <c:if test="${param.searchReserve == 'N' }">selected="selected"</c:if>>미정</option>
|
||||
</select>
|
||||
</li>
|
||||
<li>
|
||||
<input type="text" class="input_text" title="검색어 입력" placeholder="제목을 입력해주세요." id="04" name="searchTitle" value="${param.searchTitle}">
|
||||
</li>
|
||||
<li>
|
||||
<button type="button" class="btn btn_text btn_40 darkblue_fill btn_search">검색</button>
|
||||
<button type="submit" class="btn_next">검색</button>
|
||||
<button type="submit" class="btn btn_text btn_40 darkblue_fill btn_search">검색</button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</form>
|
||||
<!-- //search -->
|
||||
|
||||
<!-- table -->
|
||||
|
||||
@ -157,104 +157,45 @@ function fnCheckAll(){
|
||||
|
||||
<div class="cont">
|
||||
<!-- list_top -->
|
||||
<div class="list_top">
|
||||
<div class="list_util">
|
||||
<div class="detail_search">
|
||||
<ul>
|
||||
<li>
|
||||
<p class="tit_text">구분</p>
|
||||
<select name="searchCondition" id="searchCondition">
|
||||
<option value='' <c:if test="${searchVO.searchCondition == ''}">selected</c:if> >전체</option>
|
||||
<option value='1' <c:if test="${searchVO.searchCondition == '1'}">selected</c:if>>매뉴명</option>
|
||||
<option value='2' <c:if test="${searchVO.searchCondition == '2'}">selected</c:if>>메소드명</option>
|
||||
</select>
|
||||
<input type="text" id="searchKeyword" name="searchKeyword" class="search_input" placeholder="검색어를 입력하세요" value="<c:out value='${searchVO.searchKeyword}'/>" size="25" title="검색" maxlength="50"/>
|
||||
<button class="btn_search" onclick="fn_select('1'); return false;">검색</button>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="search_detail">
|
||||
<ul class="search_ul">
|
||||
<li>
|
||||
<p class="tit_text">구분</p>
|
||||
<select name="searchCondition" id="searchCondition">
|
||||
<option value='' <c:if test="${searchVO.searchCondition == ''}">selected</c:if> >전체</option>
|
||||
<option value='1' <c:if test="${searchVO.searchCondition == '1'}">selected</c:if>>매뉴명</option>
|
||||
<option value='2' <c:if test="${searchVO.searchCondition == '2'}">selected</c:if>>메소드명</option>
|
||||
</select>
|
||||
<input type="text" id="searchKeyword" name="searchKeyword" class="search_input" placeholder="검색어를 입력하세요" value="<c:out value='${searchVO.searchKeyword}'/>" size="25" title="검색" maxlength="50"/>
|
||||
|
||||
</li>
|
||||
<li>
|
||||
<button class="btn btn_36 blue_border btn-page-sch" title="검색 완료 버튼" onclick="fn_select('1'); return false;">검색</button>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="search_ul">
|
||||
<li>
|
||||
총 건수 :<c:out value="${paginationInfo.totalRecordCount}" />
|
||||
</li>
|
||||
<li>
|
||||
<select class="sel2" name="pageUnit" id="pageUnit" onchange="linkPage(1);" title="줄 선택" style="width: 140px">
|
||||
<option value='10' <c:if test="${searchVO.pageUnit == '10' or searchVO.pageUnit == ''}">selected</c:if>>10줄</option>
|
||||
<option value='20' <c:if test="${searchVO.pageUnit == '20'}">selected</c:if>>20줄</option>
|
||||
<option value='30' <c:if test="${searchVO.pageUnit == '30'}">selected</c:if>>30줄</option>
|
||||
<option value='100' <c:if test="${searchVO.pageUnit == '100'}">selected</c:if>>100줄</option>
|
||||
</select>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<!-- //list_top -->
|
||||
|
||||
<!-- list_top -->
|
||||
<div class="list_top">
|
||||
<p>
|
||||
총 건수 :
|
||||
<span>
|
||||
<c:out value="${paginationInfo.totalRecordCount}" />
|
||||
</span>
|
||||
건
|
||||
</p>
|
||||
<div class="list_util">
|
||||
<select class="sel2" name="pageUnit" id="pageUnit" onchange="linkPage(1);" title="줄 선택" style="width: 140px">
|
||||
<option value='10' <c:if test="${searchVO.pageUnit == '10' or searchVO.pageUnit == ''}">selected</c:if>>10줄</option>
|
||||
<option value='20' <c:if test="${searchVO.pageUnit == '20'}">selected</c:if>>20줄</option>
|
||||
<option value='30' <c:if test="${searchVO.pageUnit == '30'}">selected</c:if>>30줄</option>
|
||||
<option value='100' <c:if test="${searchVO.pageUnit == '100'}">selected</c:if>>100줄</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<!-- //list_top -->
|
||||
|
||||
<div class="form-wrap">
|
||||
<div class="table-layout">
|
||||
<table>
|
||||
<caption>분쟁조정 사례 테이블입니다.</caption>
|
||||
<colgroup>
|
||||
<col style="width: 5%">
|
||||
<col style="width: 12%">
|
||||
<%-- <col style="width: 9%"> --%>
|
||||
<col style="width: 6%">
|
||||
<col style="width: 15%">
|
||||
<col style="width: 10%">
|
||||
<col style="width: 24%">
|
||||
<col style="width: 15%">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th><p>번호</p><button type="button" class="sortBtn sort" id="sort_logId"></button></th>
|
||||
<th><p>메뉴명</p><button type="button" class="sortBtn sort" id="sort_menuNm"></button></th>
|
||||
<!-- <th>접근구분 <button type="button" class="sortBtn sort" id="sort_approNm"></button></th> -->
|
||||
<th><p>메소드</p><button type="button" class="sortBtn sort" id="sort_progrmFileNm"></button></th>
|
||||
<th><p>접속ID</p><button type="button" class="sortBtn sort" id="sort_loginId"></button></th>
|
||||
<th><p>접속IP</p><button type="button" class="sortBtn sort" id="sort_loginIp"></button></th>
|
||||
<th><p>접속URL</p><button type="button" class="sortBtn sort" id="sort_url"></button></th>
|
||||
<th><p>접속일자</p><button type="button" class="sortBtn sort" id="sort_creatDt"></button></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<c:forEach items="${logMethodList}" var="result" varStatus="status">
|
||||
<tr>
|
||||
<td>
|
||||
<c:if test="${searchVO.searchSortOrd eq 'desc' }">
|
||||
<c:out value="${ ( paginationInfo.totalRecordCount - ((paginationInfo.currentPageNo -1)*paginationInfo.recordCountPerPage) ) - status.index }"/>
|
||||
</c:if>
|
||||
<c:if test="${searchVO.searchSortOrd eq 'asc' }">
|
||||
<c:out value="${(paginationInfo.currentPageNo - 1) * paginationInfo.recordCountPerPage + status.count}"/>
|
||||
</c:if>
|
||||
</td>
|
||||
<td><c:out value="${result.menuNm}"/></td>
|
||||
<%-- <td><c:out value="${result.methodNm}"/></td> --%>
|
||||
<td><c:out value="${result.approNm}"/></td>
|
||||
<td><span class="privateInfo"><c:out value="${result.loginId}"/></span></td>
|
||||
<td><c:out value="${result.loginIp}"/></td>
|
||||
<td class="td_wrap t_left"><c:out value="${result.methodNm}"/></td>
|
||||
<td><c:out value="${result.creatDt}"/></td>
|
||||
</tr>
|
||||
</c:forEach>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="change-state-area btn_wrap right" style="overflow: hidden;padding:0;">
|
||||
<button type="button" onclick="goPage('write','')" class="btn-change-state btn btn_text btn_46 blue_fill">글쓰기</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- list -->
|
||||
<div class="list tbType01">
|
||||
<table>
|
||||
<colgroup>
|
||||
<col style="width: 60px;">
|
||||
<col style="width: 20%;">
|
||||
@ -283,15 +224,9 @@ function fnCheckAll(){
|
||||
<th><p>관리</p></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
||||
<c:forEach var="result" items="${logMethodList}" varStatus="status">
|
||||
<tr>
|
||||
<!--
|
||||
<td>
|
||||
<input name="del" id="del" type="checkbox" value="${result.admotId}" />
|
||||
</td>
|
||||
-->
|
||||
<tbody>
|
||||
<c:forEach items="${logMethodList}" var="result" varStatus="status">
|
||||
<tr>
|
||||
<td>
|
||||
<c:if test="${searchVO.searchSortOrd eq 'desc' }">
|
||||
<c:out value="${ ( paginationInfo.totalRecordCount - ((paginationInfo.currentPageNo -1)*paginationInfo.recordCountPerPage) ) - status.index }"/>
|
||||
@ -312,16 +247,19 @@ function fnCheckAll(){
|
||||
<td>
|
||||
<input type="button" value="수정" class="btnType01" style="height: 30px;" onclick="fn_modify('${result.admotId}'); return false;">
|
||||
</td>
|
||||
</tr>
|
||||
</c:forEach>
|
||||
<c:if test="${empty logMethodList}">
|
||||
<tr><td colspan="11"><spring:message code="common.nodata.msg" /></td></tr>
|
||||
</c:if>
|
||||
</tr>
|
||||
</c:forEach>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
<div class="change-state-area btn_wrap right" style="overflow: hidden;padding:0;">
|
||||
<button type="button" onclick="goPage('write','')" class="btn-change-state btn btn_text btn_46 blue_fill">글쓰기</button>
|
||||
</div>
|
||||
-->
|
||||
</div>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<!-- //list -->
|
||||
|
||||
<!-- 페이지 네비게이션 시작 -->
|
||||
<c:if test="${!empty logMethodList}">
|
||||
|
||||
@ -16,11 +16,11 @@
|
||||
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
|
||||
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
||||
<%@page import="seed.utils.SeedConstants"%>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="ko" >
|
||||
<script type="text/javascript" src="<c:url value='/js/EgovCalPopup.js'/>" ></script>
|
||||
<script type="text/javascript">
|
||||
$( document ).ready(function(){
|
||||
var tempSearchBgnDe = "${searchVO.searchBgnDe}" ;
|
||||
@ -32,6 +32,125 @@ $( document ).ready(function(){
|
||||
if(""!=tempSearchEndDe && tempSearchEndDe.length==8){
|
||||
$('#searchEndDe').val(tempSearchEndDe.substring(0,4)+"-"+tempSearchEndDe.substring(4,6)+"-"+tempSearchEndDe.substring(6,8));
|
||||
}
|
||||
|
||||
//jQuery DatePicker Option
|
||||
var dateOption = {
|
||||
showOn : "button",
|
||||
buttonImage : "/kofair_case_seed/adm/images/component/icon_calendar.png",
|
||||
buttonImageOnly : true,
|
||||
dateFormat : 'yy-mm-dd',
|
||||
showMonthAfterYear : true,
|
||||
buttonText : "달력",
|
||||
monthNames : [ '년 1월', '년 2월', '년 3월', '년 4월',
|
||||
'년 5월', '년 6월', '년 7월', '년 8월', '년 9월',
|
||||
'년 10월', '년 11월', '년 12월' ],
|
||||
dayNamesMin : [ '일', '월', '화', '수', '목', '금', '토' ],
|
||||
changeMonth : true,
|
||||
changeYear : true,
|
||||
gotoCurrent : false,
|
||||
showButtonPanel : true,
|
||||
yearRange : '-100:+10',
|
||||
maxDate : '+0d'
|
||||
//오늘을 기준으로 지난 날만 선택하려면 minDate를 maxDate로 변경, 전체 선택하려면 minDate나 maxDate 삭제
|
||||
};
|
||||
//시작일
|
||||
jQuery("#dateSt, #dateEnd").datepicker(dateOption);
|
||||
|
||||
//종료일
|
||||
//jQuery("#Dateend").datepicker(dateOption);
|
||||
|
||||
/*
|
||||
제작자 : 최병기
|
||||
제작일 : 2013.01.25
|
||||
시작일 종료일 검증
|
||||
시작일의 ID 맨 뒤에 st를 붙인다.
|
||||
종료일의 ID 맨 뒤에 end를 붙인다.
|
||||
단, ID는 동일하게 설정하고 뒤에 st, end를 붙이면 된다.
|
||||
*/
|
||||
jQuery('input')
|
||||
.change(
|
||||
function() {
|
||||
if (this.type == 'text') {
|
||||
var startid = "";
|
||||
var endid = "";
|
||||
var startval = "";
|
||||
var endval = "";
|
||||
//var id = "";
|
||||
|
||||
startid = this.id
|
||||
.substring(this.id.length - 2);
|
||||
endid = this.id
|
||||
.substring(this.id.length - 3);
|
||||
|
||||
if (startid != ""
|
||||
&& startid == 'St') {
|
||||
var id = this.id.substring(
|
||||
this.id.length - 2,
|
||||
-this.id.length);
|
||||
|
||||
//시작일 값
|
||||
startval = jQuery(this)
|
||||
.val();
|
||||
//종료일값
|
||||
endval = jQuery(
|
||||
"#" + id + "End")
|
||||
.val();
|
||||
if (endval != "") {
|
||||
startval = startval
|
||||
.replace(/-/gi,
|
||||
"")
|
||||
.replace(/ /gi,
|
||||
"")
|
||||
.replace(/:/gi,
|
||||
"");
|
||||
endval = endval
|
||||
.replace(/-/gi,
|
||||
"")
|
||||
.replace(/ /gi,
|
||||
"")
|
||||
.replace(/:/gi,
|
||||
"");
|
||||
if (startval > endval) {
|
||||
alert("종료일이 시작일보다 앞섭니다. 다시 선택해 주세요.");
|
||||
jQuery(this)
|
||||
.val("");
|
||||
}
|
||||
}
|
||||
} else if (endid != ""
|
||||
&& endid == 'End') {
|
||||
var id = this.id.substring(
|
||||
this.id.length - 3,
|
||||
-this.id.length);
|
||||
//시작일 값
|
||||
startval = jQuery(
|
||||
"#" + id + "St")
|
||||
.val();
|
||||
endval = jQuery(this).val();
|
||||
if (endval != "") {
|
||||
startval = startval
|
||||
.replace(/-/gi,
|
||||
"")
|
||||
.replace(/ /gi,
|
||||
"")
|
||||
.replace(/:/gi,
|
||||
"");
|
||||
endval = endval
|
||||
.replace(/-/gi,
|
||||
"")
|
||||
.replace(/ /gi,
|
||||
"")
|
||||
.replace(/:/gi,
|
||||
"");
|
||||
if (startval > endval) {
|
||||
alert("종료일이 시작일보다 앞섭니다. 다시 선택해 주세요.");
|
||||
jQuery(this)
|
||||
.val("");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
/* ********************************************************
|
||||
@ -179,44 +298,11 @@ function webLogListExcelDownload(){
|
||||
|
||||
<div class="cont">
|
||||
|
||||
<!-- list_top -->
|
||||
<div class="list_top">
|
||||
<div class="list_util">
|
||||
<div class="detail_search">
|
||||
<ul>
|
||||
<!--
|
||||
<div class="search_detail">
|
||||
<ul class="search_ul">
|
||||
<li>
|
||||
<p class="tit_text">구분</p>
|
||||
<select name="searchCondition" id="searchCondition">
|
||||
<option value='' <c:if test="${searchVO.searchCondition == ''}">selected</c:if> >전체</option>
|
||||
<option value='1' <c:if test="${searchVO.searchCondition == '1'}">selected</c:if>>메뉴명</option>
|
||||
<option value='2' <c:if test="${searchVO.searchCondition == '2'}">selected</c:if>>URL</option>
|
||||
</select>
|
||||
<input type="text" id="searchKeyword" name="searchKeyword" class="search_input" placeholder="검색어를 입력하세요" value="<c:out value='${searchVO.searchKeyword}'/>" size="25" title="검색" maxlength="50"/>
|
||||
<button class="btn_search" onclick="fn_select('1'); return false;">검색</button>
|
||||
</li>
|
||||
-->
|
||||
<!--
|
||||
<li>
|
||||
<p class="tType5">리스트 수 : <span class="tType4 c_456ded fwBold"><c:out value="${paginationInfo.totalRecordCount}"/></span>건</p>
|
||||
</li>
|
||||
-->
|
||||
<li>
|
||||
<div id="sel_date" class="sel_date">
|
||||
<input type="text" class="startDate inp" title="검색시작일" id="startDate01" name="searchStartDt" onclick="return calendarOpen('startDate01-lry','',this)" value="${searchVO.searchStartDt}" data-datecontrol="true" readonly>
|
||||
<div class="calendar_in" id="calendarName_startDate" style="z-index: 9;">
|
||||
<button type="button" value="달력 팝업 열기" onclick="return calendarOpen('startDate01-lry','',this)" class="btn_cal"></button>
|
||||
<div id="startDate01-lry" class="calendarPop" style="display: none;">
|
||||
<iframe id="startDate01-ifrm" name="startDate01-ifrm" class="calendar-frame" src="/kccadrPb/adm/calendar.html" title=" 달력 팝업" frameborder="0" scrolling="no"></iframe>
|
||||
</div>
|
||||
</div> ~
|
||||
<input type="text" class="endDate inp" title="검색시작일" id="endDate" name="searchEndDt" onclick="return calendarOpen('endDate-lry','',this)" value="${searchVO.searchEndDt}" data-datecontrol="true" readonly>
|
||||
<div class="calendar_in" id="calendarName_endDate" style="z-index: 9;">
|
||||
<button type="button" value="달력 팝업 열기" onclick="return calendarOpen('endDate-lry','',this)" class="btn_cal" ></button>
|
||||
<div id="endDate-lry" class="calendarPop" style="display: none;">
|
||||
<iframe id="endDate-ifrm" name="endDate-ifrm" class="calendar-frame" src="/kccadrPb/adm/calendar.html"title=" 달력 팝업" frameborder="0" scrolling="no"></iframe>
|
||||
</div>
|
||||
</div>
|
||||
<div class="calendar calendar_term">
|
||||
<input type="text" id="startDate01" name="searchStartDt" value="${searchVO.searchStartDt}"> ~ <input type="text" id="endDate" name="searchEndDt" value="${searchVO.searchEndDt}">
|
||||
</div>
|
||||
|
||||
<!--
|
||||
@ -252,72 +338,14 @@ function webLogListExcelDownload(){
|
||||
<button class="btn_search" onclick="fn_select('1'); return false;">검색</button>
|
||||
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- //list_top -->
|
||||
|
||||
|
||||
<div class="form-wrap">
|
||||
<div class="table-layout">
|
||||
<table>
|
||||
<caption>분쟁조정 사례 테이블입니다.</caption>
|
||||
<colgroup>
|
||||
<col style="width: 5%">
|
||||
<col style="width: 12%">
|
||||
<%-- <col style="width: 9%"> --%>
|
||||
<col style="width: 6%">
|
||||
<col style="width: 15%">
|
||||
<col style="width: 10%">
|
||||
<col style="width: 24%">
|
||||
<col style="width: 15%">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th><p>번호</p><button type="button" class="sortBtn sort" id="sort_logId"></button></th>
|
||||
<th><p>메뉴명</p><button type="button" class="sortBtn sort" id="sort_menuNm"></button></th>
|
||||
<!-- <th>접근구분 <button type="button" class="sortBtn sort" id="sort_approNm"></button></th> -->
|
||||
<th><p>메소드</p><button type="button" class="sortBtn sort" id="sort_progrmFileNm"></button></th>
|
||||
<th><p>접속ID</p><button type="button" class="sortBtn sort" id="sort_loginId"></button></th>
|
||||
<th><p>접속IP</p><button type="button" class="sortBtn sort" id="sort_loginIp"></button></th>
|
||||
<th><p>접속URL</p><button type="button" class="sortBtn sort" id="sort_url"></button></th>
|
||||
<th><p>접속일자</p><button type="button" class="sortBtn sort" id="sort_creatDt"></button></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<c:forEach items="${userMenuList}" var="result" varStatus="status">
|
||||
<tr>
|
||||
<td>
|
||||
<c:if test="${searchVO.searchSortOrd eq 'desc' }">
|
||||
<c:out value="${ ( paginationInfo.totalRecordCount - ((paginationInfo.currentPageNo -1)*paginationInfo.recordCountPerPage) ) - status.index }"/>
|
||||
</c:if>
|
||||
<c:if test="${searchVO.searchSortOrd eq 'asc' }">
|
||||
<c:out value="${(paginationInfo.currentPageNo - 1) * paginationInfo.recordCountPerPage + status.count}"/>
|
||||
</c:if>
|
||||
</td>
|
||||
<td><c:out value="${result.menuNm}"/></td>
|
||||
<%-- <td><c:out value="${result.methodNm}"/></td> --%>
|
||||
<td><c:out value="${result.approNm}"/></td>
|
||||
<td><span class="privateInfo"><c:out value="${result.loginId}"/></span></td>
|
||||
<td><c:out value="${result.loginIp}"/></td>
|
||||
<td class="td_wrap t_left"><c:out value="${result.methodNm}"/></td>
|
||||
<td><c:out value="${result.creatDt}"/></td>
|
||||
</tr>
|
||||
</c:forEach>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="change-state-area btn_wrap right" style="overflow: hidden;padding:0;">
|
||||
<button type="button" onclick="goPage('write','')" class="btn-change-state btn btn_text btn_46 blue_fill">글쓰기</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- list -->
|
||||
<div class="list tbType01">
|
||||
<table>
|
||||
<colgroup>
|
||||
<col style="width: 8%">
|
||||
<col style="width: 12%">
|
||||
@ -334,7 +362,7 @@ function webLogListExcelDownload(){
|
||||
<th>최종접속일자 <button type="button" class="sortBtn sort" id="sort_creatDt"></button></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tbody>
|
||||
|
||||
<c:forEach var="result" items="${userMenuList}" varStatus="status">
|
||||
<tr>
|
||||
@ -349,10 +377,17 @@ function webLogListExcelDownload(){
|
||||
<tr><td colspan="5"><spring:message code="common.nodata.msg" /></td></tr>
|
||||
</c:if>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<!-- //list -->
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
<div class="change-state-area btn_wrap right" style="overflow: hidden;padding:0;">
|
||||
<button type="button" onclick="goPage('write','')" class="btn-change-state btn btn_text btn_46 blue_fill">글쓰기</button>
|
||||
</div>
|
||||
-->
|
||||
</div>
|
||||
|
||||
<!-- page -->
|
||||
<!-- <div class="page"> -->
|
||||
<%-- <ui:pagination paginationInfo = "${paginationInfo}" type="image" jsFunction="linkPage" /> --%>
|
||||
|
||||
@ -227,10 +227,10 @@ function fn_delete() {
|
||||
|
||||
|
||||
<!-- list -->
|
||||
<div class="list tb_type01">
|
||||
<div class="search_detail">
|
||||
|
||||
|
||||
<table class="tbType02" style="width: 100%;">
|
||||
<table>
|
||||
<colgroup>
|
||||
<col style="width: 20%">
|
||||
<col style="width: 80%">
|
||||
@ -305,15 +305,28 @@ function fn_delete() {
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="btn_wrap btn_layout02" style="margin: 20px 0 0 0;">
|
||||
<button type="button" class="btnType03 bg_888888" onclick="goList(); return false;">목록</button>
|
||||
<c:if test="${!empty loginLog.admotId }">
|
||||
<button type="button" class="btnType02" onclick="fn_delete(); return false;">삭제</button>
|
||||
<button type="button" class="btnType06" onclick="fn_update(); return false;">수정</button>
|
||||
</c:if>
|
||||
<c:if test="${empty loginLog.admotId }">
|
||||
<button type="button" class="btnType06" onclick="fn_insert(); return false;">저장</button>
|
||||
</c:if>
|
||||
<div class="search_detail">
|
||||
<ul class="search_ul">
|
||||
|
||||
<li>
|
||||
<button type="button" class="btn btn_36 blue_border btn-page-sch" onclick="goList(); return false;">목록</button>
|
||||
</li>
|
||||
<c:if test="${!empty loginLog.admotId }">
|
||||
<li>
|
||||
<button type="button" class="btn btn_36 blue_border btn-page-sch" onclick="fn_delete(); return false;">삭제</button>
|
||||
</li>
|
||||
<li>
|
||||
<button type="button" class="btn btn_36 blue_border btn-page-sch" onclick="fn_update(); return false;">수정</button>
|
||||
</li>
|
||||
</c:if>
|
||||
<c:if test="${empty loginLog.admotId }">
|
||||
<li>
|
||||
<button type="button" class="btn btn_36 blue_border btn-page-sch" onclick="fn_insert(); return false;">저장</button>
|
||||
</li>
|
||||
</c:if>
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
</div>
|
||||
<!-- //list -->
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
<ul class="page_location">
|
||||
<li><i class="icon home"></i></li>
|
||||
<li>분쟁조정 안내</li>
|
||||
<li>오시는길</li>
|
||||
<li>오시는 길</li>
|
||||
</ul>
|
||||
<!-- //page_location -->
|
||||
|
||||
@ -50,8 +50,50 @@
|
||||
}).render();
|
||||
}
|
||||
</script>
|
||||
|
||||
<div class="map_box">
|
||||
<img src="/kofair_case_seed/usr/images/info/logo.png" alt="">
|
||||
<ul class="adress_ul">
|
||||
<li>
|
||||
<p class="title">주소</p>
|
||||
<span>서울 중구 세종대로 39 상공회의소회관 9층</span>
|
||||
</li>
|
||||
<li>
|
||||
<p class="title">전화</p>
|
||||
<span>1588-1490</span>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<!-- 지하철 이용 시 -->
|
||||
<b class="title orange_border blue_border">지하철 이용 시</b>
|
||||
<div class="item_list">
|
||||
<div class="icon_box">
|
||||
<i class="icon subway"></i>
|
||||
</div>
|
||||
<ul>
|
||||
<li><span class="subway_text subway_1">1</span>호선 서울역 3번 출구 : YTN 방향 도보 5분</li>
|
||||
<li><span class="subway_text subway_2">2</span>호선 시청역 9번 출구 : 삼성본관방향 도보 5분</li>
|
||||
<li><span class="subway_text subway_4">4</span>호선 회현역 5번 출구 : 숭례문방향 도보 5분</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<!-- 버스 이용 시 -->
|
||||
<b class="title orange_border blue_border">버스 이용 시</b>
|
||||
<div class="item_list">
|
||||
<div class="icon_box">
|
||||
<i class="icon bus"></i>
|
||||
</div>
|
||||
<ul>
|
||||
<li>- 서울역 YTN 빌딩 앞 : 149, 151, 152, 162, 202, 500, 501, 502, 503, 505, 056, 701, 702, 703</li>
|
||||
<li>- 염천교 : 163, 261, 262, 263, 604, 7017</li>
|
||||
<li>- 시청앞 : 150, 1711, 406, 408, 421, 504, 507, 603, 700, 7019, 7011, 7022</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!--
|
||||
<div class="map_wrap2 clear">
|
||||
<div class="map_l">
|
||||
<h4 class="mgb10 inblock indent tit3">지하철 이용 시</h4>
|
||||
@ -79,6 +121,7 @@
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
-->
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user