# WARNING: head commit changed in the meantime
Merge branch 'master' of http://yongjoon.cho@vcs.iten.co.kr:9999/itnAdmin/fairnet 마이페이지 소스 수정
This commit is contained in:
parent
10a214f3ca
commit
8057ad755a
@ -268,6 +268,16 @@ private Logger log = Logger.getLogger(this.getClass());
|
||||
}
|
||||
*/
|
||||
|
||||
System.out.println("1");
|
||||
|
||||
boolean b_ret_u = true;
|
||||
map = FairnetUtils.myCheck(map, session);
|
||||
b_ret_u = (boolean)map.get("b_ret");
|
||||
|
||||
if (!b_ret_u) {
|
||||
return new ModelAndView("/_common/jsp/umessage");
|
||||
}
|
||||
|
||||
setSessionMessageRemove(session);
|
||||
|
||||
/*----권한체크----*/
|
||||
@ -276,6 +286,8 @@ private Logger log = Logger.getLogger(this.getClass());
|
||||
boolean memberAuthM = managerSiteManagerService.getSiteManagerListCnt(siteIdx, memberIdx);
|
||||
boolean memberAuth = managerSiteMenuManagerService.getSiteMenuManagerListCnt(siteMenuIdx, memberIdx);
|
||||
|
||||
System.out.println("12");
|
||||
|
||||
//메뉴 권한설정
|
||||
/*
|
||||
if(!memberGrant.equals("S") && !memberAuthM && !memberAuth &&
|
||||
@ -306,6 +318,8 @@ private Logger log = Logger.getLogger(this.getClass());
|
||||
"siteMenuTitle", "siteMenuRegDate", "siteMenuModDate", "siteMenuNameType", "siteMenuIdxs", "siteMenuDepth", "siteMenuSatisfaction", "siteMenuIdx1",
|
||||
"tSite.siteActiveMenuWidth", "tSite.siteService", "tSite.siteServiceSdate", "tSite.siteServiceSdate"});
|
||||
|
||||
System.out.println("13");
|
||||
|
||||
/*
|
||||
if(!memberGrant.equals("S") && !memberAuthM && !memberAuth){
|
||||
if(!SeedUtils.setReplaceNull(tSiteMenuDB.get("_siteMenuStatus")).equals("U")){
|
||||
@ -337,6 +351,8 @@ private Logger log = Logger.getLogger(this.getClass());
|
||||
}
|
||||
}
|
||||
|
||||
System.out.println("14");
|
||||
|
||||
if(SeedUtils.setReplaceNull(tSiteMenuDB.get("_siteMenuType")).equals("F") ||
|
||||
SeedUtils.setReplaceNull(tSiteMenuDB.get("_siteMenuType")).equals("L")){
|
||||
return new ModelAndView("redirect:"+SeedUtils.setReplaceNull(tSiteMenuDB.get("_siteMenuLinkUrl")));
|
||||
@ -349,6 +365,8 @@ private Logger log = Logger.getLogger(this.getClass());
|
||||
List<Map<Object, Object>> siteMenuManagerList =
|
||||
managerSiteMenuManagerService.getSiteMenuManagerMapList(siteMenuIdx, new String[] {"siteMenuManagerStatus", "tMember.memberIdx"});
|
||||
|
||||
System.out.println("15");
|
||||
|
||||
for(int i=0; i<siteMenuManagerList.size(); i++){
|
||||
|
||||
Map<Object, Object> tSiteMenuManagerDB = siteMenuManagerList.get(i);
|
||||
@ -369,6 +387,8 @@ private Logger log = Logger.getLogger(this.getClass());
|
||||
siteMenuManager = "Y";
|
||||
}
|
||||
|
||||
System.out.println("16");
|
||||
|
||||
//편집 권한
|
||||
map.put("siteMenuManager", siteMenuManager);
|
||||
//담당자 보기 설정
|
||||
@ -385,6 +405,8 @@ private Logger log = Logger.getLogger(this.getClass());
|
||||
|
||||
map.put("siteMenuTitle", siteMenuTitle);
|
||||
|
||||
System.out.println("157");
|
||||
|
||||
//부모메뉴 타이틀 설정한 경우 해당 글의 부모 타이틀을 가져옴
|
||||
if(SeedUtils.setReplaceNull(tSiteMenuDB.get("_siteMenuParentTitle") ,"N").equals("Y")){
|
||||
String[] siteMenuTitles = siteMenuTitle.split("\\|");
|
||||
@ -397,13 +419,23 @@ private Logger log = Logger.getLogger(this.getClass());
|
||||
map.put("seedMenuAuth", managerGroupService.getGroupList(siteIdx, memberIdx, memberMerge, memberMergeSiteIdx));
|
||||
/*----권한체크 종료----*/
|
||||
|
||||
System.out.println("158");
|
||||
|
||||
//여기서부터 작업할거
|
||||
//페이징 관련
|
||||
paramMap.put("pageStart", cri.getPageStart());
|
||||
paramMap.put("perPageNum", cri.getPerPageNum());
|
||||
|
||||
//페이지용 추가 1
|
||||
try {
|
||||
paramMap.put("hpDi", session.getAttribute("hpDi"));
|
||||
}catch(Exception ex) {
|
||||
paramMap.put("hpDi", "hpDi");
|
||||
ex.printStackTrace();
|
||||
}
|
||||
|
||||
//페이지용 추가 2
|
||||
try {
|
||||
PageMaker pageMaker = new PageMaker();
|
||||
pageMaker.setCri(cri);
|
||||
|
||||
@ -411,6 +443,12 @@ private Logger log = Logger.getLogger(this.getClass());
|
||||
|
||||
map.put("myPageList", service.myPageList(paramMap));
|
||||
map.put("pageMaker", pageMaker);
|
||||
}catch(Exception ex) {
|
||||
ex.printStackTrace();
|
||||
}
|
||||
|
||||
System.out.println("159");
|
||||
|
||||
return new ModelAndView("/_extra/web/user/myPage/myMediationList");
|
||||
}
|
||||
|
||||
@ -597,6 +635,14 @@ private Logger log = Logger.getLogger(this.getClass());
|
||||
}
|
||||
*/
|
||||
|
||||
boolean b_ret_u = true;
|
||||
map = FairnetUtils.myCheck(map, session);
|
||||
b_ret_u = (boolean)map.get("b_ret");
|
||||
|
||||
if (!b_ret_u) {
|
||||
return new ModelAndView("/_common/jsp/umessage");
|
||||
}
|
||||
|
||||
setSessionMessageRemove(session);
|
||||
|
||||
/*----권한체크----*/
|
||||
|
||||
@ -4,6 +4,8 @@ import java.util.Map;
|
||||
|
||||
import javax.servlet.http.HttpSession;
|
||||
|
||||
import org.springframework.ui.ModelMap;
|
||||
|
||||
public class FairnetUtils {
|
||||
|
||||
//private static Logger log = Logger.getLogger(FairnetUtils.class);
|
||||
@ -71,4 +73,33 @@ public class FairnetUtils {
|
||||
return b_ret;
|
||||
}
|
||||
|
||||
public static ModelMap myCheck(
|
||||
ModelMap p_map
|
||||
, HttpSession p_session
|
||||
) {
|
||||
boolean b_ret = true;
|
||||
|
||||
//인증여부 체크용
|
||||
/*
|
||||
try {
|
||||
if(SeedUtils.setReplaceNull(p_session.getAttribute("hpName")).equals("")){
|
||||
p_map.put("siteIdx", "case");
|
||||
p_map.put("url", "/web/user/mypage/case/01/168/myCheck.do");
|
||||
p_map.put("message", "common.message.my.check");
|
||||
p_map.put("opener", "");
|
||||
p_map.put("append", "");
|
||||
p_map.put("self", "");
|
||||
|
||||
b_ret = false;
|
||||
}
|
||||
|
||||
}catch(Exception ex) {
|
||||
ex.printStackTrace();
|
||||
}
|
||||
*/
|
||||
|
||||
p_map.put("b_ret", b_ret);
|
||||
|
||||
return p_map;
|
||||
}
|
||||
}
|
||||
@ -2,170 +2,177 @@
|
||||
<%@ taglib uri='http://java.sun.com/jsp/jstl/core' prefix='c' %>
|
||||
<%@ taglib uri='http://www.springframework.org/tags/form' prefix='form'%>
|
||||
|
||||
<div class="mgt30 tab_wrap">
|
||||
<h4 class="mgb10 inblock indent tit3">법률상담 메뉴에서 신청한 신청건에 대하여 조회 및 처리 상태를 확인 하실 수 있습니다.</h4>
|
||||
<div class="tbl1 mgl13 pc">
|
||||
<form id="searchFrm" name="searchFrm" action="" method="get">
|
||||
<input type="hidden" name="page" value="1">
|
||||
<table cellspacing="0" cellpadding="0" class="">
|
||||
<caption>신청현황 검색폼 : 등록일시, 조정유형, 제목, 처리상태</caption>
|
||||
<div class="sub_content apl_status_content">
|
||||
|
||||
<!-- page_location -->
|
||||
<ul class="page_location">
|
||||
<li><i class="icon home"></i></li>
|
||||
<li>마이페이지</li>
|
||||
<li>분쟁조정신청현황</li>
|
||||
</ul>
|
||||
<!-- //page_location -->
|
||||
|
||||
<h3 class="sub_con_tit">분쟁조정신청현황</h3>
|
||||
|
||||
<ul class="tabs tab_02 blue_fill mt40 mb40">
|
||||
<li><button type="button" onclick="pblEvt.tab(this,'active','ul',$('.tab'),'0')" class="tab active">신청현황</button></li>
|
||||
<li><button type="button" onclick="pblEvt.tab(this,'active','ul',$('.tab'),'1')" class="tab">임시보관</button></li>
|
||||
</ul>
|
||||
|
||||
<div class="tab_contents active">
|
||||
|
||||
<div class="table_top">
|
||||
<p class="list_total_number">전체 <span class="color_blue">3</span>건 (<span class="color_blue">1</span>/1페이지)</p>
|
||||
<button type="button" class="btn btn_text btn_35 orange_border">사건조회</button>
|
||||
</div>
|
||||
|
||||
<div class="table_type_cols">
|
||||
<table>
|
||||
<colgroup>
|
||||
<col style="width:15%">
|
||||
<col style="width:35%">
|
||||
<col style="width:15%">
|
||||
<col style="width:35%">
|
||||
<col style="width:92px;">
|
||||
<col style="width:18%;">
|
||||
<col style="width:18%;">
|
||||
<col style="width:18%;">
|
||||
<col style="width:15%;">
|
||||
<col style="width:15%;">
|
||||
<col style="width:15%;">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>상태</th>
|
||||
<th>문서 등록번호</th>
|
||||
<th>신청인</th>
|
||||
<th>피신청인</th>
|
||||
<th>사건번호</th>
|
||||
<th>담당자</th>
|
||||
<th>신청일</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row">
|
||||
<label for="01">등록일시</label>
|
||||
</th>
|
||||
<td>
|
||||
<input type="text" id="01" class="inp_period datepicker" name="searchDate1" value="${param.searchDate1}" title="기간 시작일"> -
|
||||
<input type="text" id="02" class="inp_period datepicker" name="searchDate2" value="${param.searchDate2}" title="기간 종료일">
|
||||
</td>
|
||||
<th scope="row">
|
||||
<label for="searchType">조정유형</label>
|
||||
</th>
|
||||
<td>
|
||||
<select class="sel_phone inp_ful" name="searchType" id="searchType">
|
||||
<option value="">선택하세요</option>
|
||||
</select>
|
||||
</td>
|
||||
<td class="table_number">접수</td>
|
||||
<td class="td_title"><a href="#none" class="color_333"><span class="pc_hide">문서 등록번호 : </span> 20240819-028</a></td>
|
||||
<td class="td_hide">홍길동</td>
|
||||
<td class="td_hide">홍길동, 정길동, 김길동, 정길동, 김길동</td>
|
||||
<td class="td_case_number"><i class="icon hide td_icon td_case_number"></i>202408-145</td>
|
||||
<td class="td_writer"><i class="icon hide td_icon td_writer"></i>김담당</td>
|
||||
<td class="td_hide">2024-08-20</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<p class="cf_text">※ 사건접수 완료 후 진행상황은 홈페이지 메뉴 분쟁조정 사건조회에서 조회가 가능합니다.</p>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="tab_contents">
|
||||
<div class="table_top">
|
||||
<p class="list_total_number">전체 <span class="color_blue">3</span>건 (<span class="color_blue">1</span>/1페이지)</p>
|
||||
</div>
|
||||
|
||||
<div class="table_type_cols">
|
||||
<table>
|
||||
<colgroup>
|
||||
<col style="width:120px;">
|
||||
<col style="width:auto;">
|
||||
<col style="width:20%;">
|
||||
<col style="width:20%;">
|
||||
<col style="width:20%;">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>번호</th>
|
||||
<th>신청인</th>
|
||||
<th>조정유형</th>
|
||||
<th>보관일</th>
|
||||
<th>수정</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="table_number">3</td>
|
||||
<td class="td_person"><i class="icon hide td_icon td_person"></i>홍길동</td>
|
||||
<td class="td_type"><i class="icon hide td_icon td_type"></i>공정거래</td>
|
||||
<td class="td_hide">2024-08-20</td>
|
||||
<td class="td_title"><button type="button" class="btn btn btn_35 darkblue_border btn_edit">수정하기</button></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="sub_content">
|
||||
|
||||
<!-- page_location -->
|
||||
<ul class="page_location">
|
||||
<li><i class="icon home"></i></li>
|
||||
<li>마이페이지</li>
|
||||
<li>법률상담예약</li>
|
||||
</ul>
|
||||
<!-- //page_location -->
|
||||
|
||||
<h3 class="sub_con_tit">법률상담예약</h3>
|
||||
|
||||
<div class="table_type_rows mt40">
|
||||
<table>
|
||||
<colgroup>
|
||||
<col style="width:200px;">
|
||||
<col style="width:calc((100% - 400px)/2);">
|
||||
<col style="width:200px;">
|
||||
<col style="width:calc((100% - 400px)/2);">
|
||||
</colgroup>
|
||||
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>접수번호</th>
|
||||
<td>20240829-003</th>
|
||||
<th>등록일</th>
|
||||
<td>2024-08-29</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">
|
||||
<label for="04">제목</label>
|
||||
</th>
|
||||
<td>
|
||||
<input type="text" id="04" class="inp_ful" name="searchTitle" value="${param.searchTitle}">
|
||||
</td>
|
||||
<th scope="row">
|
||||
<label for="searchReserve">예약여부</label>
|
||||
</th>
|
||||
<td>
|
||||
<select class="sel_phone inp_ful" name="searchReserve" id="searchReserve">
|
||||
<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>
|
||||
</select>
|
||||
<th>신청인</th>
|
||||
<td>홍길동</td>
|
||||
<th>핸드폰</th>
|
||||
<td>010-1234-5678</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>조정유형</th>
|
||||
<td>공정거래</td>
|
||||
<th>사무실</th>
|
||||
<td>010-1111-3333</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>이메일</th>
|
||||
<td colspan="3">dfkeito02@naver.com</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>상담제목</th>
|
||||
<td colspan="3">공정거래 상담 신청합니다.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>상담내용</th>
|
||||
<td colspan="3" class="td_substance">신청인은 자동차 매매사업자이고, 피신청인은 자동차 중개(판매)사이트(이하 ‘이 사건 사이트’라 한다)를 운영하는 사업자이며,
|
||||
신청인은 피신청인의 이 사건 사이트를 통하여 자동차를 매입해왔는데 피신청인이 일방적으로 신청인의 계정을 정지한 행위가
|
||||
부당하다고 주장하면서 이 사건 분쟁조정을 신청하였습니다. 이런 경우 어떻게 해야 하는지 궁금합니다.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>첨부파일</th>
|
||||
<td colspan="3">
|
||||
<ul class="view_file_list border_0">
|
||||
<li><a href="#" download="download"><i class="icon file clip blue"></i>분쟁조정신청 관련_필요한 첨부이미지_10310.png</a></li>
|
||||
<li><a href="#" download="download"><i class="icon file clip blue"></i>분쟁조정신청 관련_필요한 첨부이미지_10310.png</a></li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div class="clear mgt20 mgb50">
|
||||
<div class="fl_r m_mgr_to_10">
|
||||
<button type="submit" class="btn_next">검색</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="mobile">
|
||||
<form id="mSearchFrm" name="mSearchFrm" action="" method="get">
|
||||
<input type="hidden" name="page" value="1">
|
||||
<ul class="m_ul2">
|
||||
<li>
|
||||
<ul>
|
||||
<li><span class="m_ul_tit">등록일시</span>
|
||||
<input type="text" id="01" class="inp_period m_mgl_to_0 datepicker" name="searchDate1" value="${param.searchDate1}" title="기간 시작일"> -
|
||||
<input type="text" id="02" class="inp_period datepicker" name="searchDate2" value="${param.searchDate2}" title="기간 종료일">
|
||||
</li>
|
||||
<li><span class="m_ul_tit">조정유형</span>
|
||||
<select id="05" class="sel_phone inp_ful m_mgl_to_0" name="searchType" id="searchType">
|
||||
<option value="">선택하세요</option>
|
||||
</select>
|
||||
</li>
|
||||
<li><span class="m_ul_tit">제목</span>
|
||||
<input type="text" id="04" class="inp_ful m_mgl_to_0" name="searchTitle" value="${param.searchTitle}">
|
||||
</li>
|
||||
<li><span class="m_ul_tit">처리상태</span>
|
||||
<select class="sel_phone inp_ful m_mgl_to_0" name="searchReserve" id="searchReserve">
|
||||
<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>
|
||||
</select>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="clear mgt20 mgb50">
|
||||
<div class="fl_r m_mgr_to_10">
|
||||
<button type="submit" class="btn_next">검색</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
<div class="btn_wrap right">
|
||||
<button type="button" class="btn btn_text btn_45 darkgray_border">삭제</button>
|
||||
<button type="button" class="btn btn_text btn_45 gray_fill">목록</button>
|
||||
</div>
|
||||
|
||||
|
||||
<ul class="resp_li resp_li2_3 mgt20 indent resp_li_child2l">
|
||||
<li class="resp_li_tit">
|
||||
<span>신청인</span><!--
|
||||
--><span>제목</span><!--
|
||||
--><span>조정유형</span><!--
|
||||
--><span>등록일</span><!--
|
||||
--><span>예약여부</span><!--
|
||||
--><span>예약일시</span>
|
||||
</li>
|
||||
<c:if test="${not empty data}">
|
||||
<c:forEach items="${data}" var="list" varStatus="status">
|
||||
<li>
|
||||
<span>${list.applcntNm}</span><!--
|
||||
--><span><a href="javascript:goPage('view','${list.counselSeq}');">${list.counselTitle}</a></span><!--
|
||||
--><span>${list.mediationTypeName}</span><!--
|
||||
--><span>
|
||||
${list.counselRegdate}
|
||||
</span><!--
|
||||
--><span>
|
||||
${list.counselReserveYn}
|
||||
</span><!--
|
||||
--><span>
|
||||
${list.counselReserveRegdate}
|
||||
</span>
|
||||
</li>
|
||||
</c:forEach>
|
||||
</c:if>
|
||||
|
||||
<c:if test="${empty data}">
|
||||
<li>
|
||||
<div align="center">등록된 데이터가 없습니다.</div>
|
||||
</li>
|
||||
</c:if>
|
||||
</ul>
|
||||
|
||||
<!-- 페이징 -->
|
||||
<div class="pager tal_c mgt30">
|
||||
<a href="javascript:goPage('paging', '1')" class="pre2">처음페이지</a>
|
||||
<c:choose>
|
||||
<c:when test="${pageMaker.prev}">
|
||||
<a href="javascript:goPage('paging', '${pageMaker.cri.page - 1}')" class="pre1">이전페이지</a>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<a href="javascript:goPage('paging', '${pageMaker.cri.page}')" class="pre1">이전페이지</a>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
|
||||
<c:forEach begin="${pageMaker.startPage}" end="${pageMaker.endPage }" var="idx">
|
||||
<c:choose>
|
||||
<c:when test="${idx == pageMaker.cri.page }">
|
||||
<a href="javascript:goPage('paging', '${idx}')" class="p_num p_num_on">${idx}</a>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<a href="javascript:goPage('paging', '${idx}')" class="p_num">${idx}</a>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
</c:forEach>
|
||||
<c:choose>
|
||||
<c:when test="${pageMaker.next}">
|
||||
<a href="javascript:goPage('paging', '${pageMaker.cri.page + 1}')" class="post1">다음페이지</a>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<a href="javascript:goPage('paging', '${pageMaker.cri.page}')" class="post1">다음페이지</a>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
<a href="javascript:goPage('paging', '${pageMaker.endPage}')" class="post2">마지막페이지</a>
|
||||
</div>
|
||||
<!-- 페이징 end-->
|
||||
</div>
|
||||
|
||||
@ -2,243 +2,108 @@
|
||||
<%@ taglib uri='http://java.sun.com/jsp/jstl/core' prefix='c' %>
|
||||
<%@ taglib uri='http://www.springframework.org/tags/form' prefix='form'%>
|
||||
|
||||
<div class="sub_con">
|
||||
<article>
|
||||
<div class="mgt30 tab_wrap">
|
||||
<div class="tab2 TAP2_1">
|
||||
<strong class="tab2Tit inblock indent disc2 <c:if test="${empty param.command || param.command=='app'}">tab_on</c:if>">
|
||||
<a href="/user/mypage/case/01/168/myMediationList.do?command=app&page=1">신청현황</a>
|
||||
</strong>
|
||||
|
||||
<div class="sub_content apl_status_content">
|
||||
|
||||
<!-- page_location -->
|
||||
<ul class="page_location">
|
||||
<li><i class="icon home"></i></li>
|
||||
<li>마이페이지</li>
|
||||
<li>분쟁조정신청현황</li>
|
||||
</ul>
|
||||
<!-- //page_location -->
|
||||
|
||||
<h3 class="sub_con_tit">분쟁조정신청현황</h3>
|
||||
|
||||
<ul class="tabs tab_02 blue_fill mt40 mb40">
|
||||
<li><button type="button" onclick="pblEvt.tab(this,'active','ul',$('.tab'),'0')" class="tab active">신청현황</button></li>
|
||||
<li><button type="button" onclick="pblEvt.tab(this,'active','ul',$('.tab'),'1')" class="tab">임시보관</button></li>
|
||||
</ul>
|
||||
|
||||
<div class="tab_contents active">
|
||||
|
||||
<div class="table_top">
|
||||
<p class="list_total_number">전체 <span class="color_blue">3</span>건 (<span class="color_blue">1</span>/1페이지)</p>
|
||||
<button type="button" class="btn btn_text btn_35 orange_border">사건조회</button>
|
||||
</div>
|
||||
<div class="tbl4 pat30 border_t tab2Con tab2Con1 <c:if test="${param.command=='temp'}">dis_none</c:if>">
|
||||
<h4 class="mgb10 inblock indent disc2 w100per">신청현황</h4>
|
||||
<table cellspacing="0" cellpadding="0" class="pc">
|
||||
<caption>신청현황 항목 : 상태, 문서등록번호, 신청인, 피신청인, 등록번호, 담당자, 신청일, 보기, 비고</caption>
|
||||
<colgroup >
|
||||
<col style="width:5%" />
|
||||
<col style="width:5%" />
|
||||
<col style="width:5%" />
|
||||
<col style="width:5%" />
|
||||
<col style="width:5%" />
|
||||
<col style="width:5%" />
|
||||
<col style="width:5%" />
|
||||
<col style="width:6%" />
|
||||
<col style="width:9%" />
|
||||
|
||||
<div class="table_type_cols">
|
||||
<table>
|
||||
<colgroup>
|
||||
<col style="width:92px;">
|
||||
<col style="width:18%;">
|
||||
<col style="width:18%;">
|
||||
<col style="width:18%;">
|
||||
<col style="width:15%;">
|
||||
<col style="width:15%;">
|
||||
<col style="width:15%;">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">상태</th>
|
||||
<th scope="col">문서<br />등록번호</th>
|
||||
<th scope="col">신청인</th>
|
||||
<th scope="col">피신청인</th>
|
||||
<th scope="col">사건번호</th>
|
||||
<th scope="col">담당자</th>
|
||||
<th scope="col">신청일</th>
|
||||
<th scope="col">접수</th>
|
||||
<th scope="col">진행중사건</th>
|
||||
<th>상태</th>
|
||||
<th>문서 등록번호</th>
|
||||
<th>신청인</th>
|
||||
<th>피신청인</th>
|
||||
<th>사건번호</th>
|
||||
<th>담당자</th>
|
||||
<th>신청일</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<c:if test="${not empty myPageList}">
|
||||
<c:forEach items="${myPageList}" var="list" varStatus="status">
|
||||
<c:if test="${list.REQUEST_CHECK == '1602000000' }">
|
||||
<tr>
|
||||
<td>${list.STATE}</td>
|
||||
<td>${list.RCEPT_NO }</td>
|
||||
<td>
|
||||
${list.APPLCNT_NM} <c:if test="${list.APP_CNT gt 1}"> 외 <br/>${list.APP_CNT-1 }명</c:if>
|
||||
</td>
|
||||
<td>
|
||||
${list.RESPONDENT_CEO } <c:if test="${list.RES_CNT gt 1}"> 외 <br/>${list.RES_CNT-1 }명</c:if>
|
||||
</td>
|
||||
<c:choose>
|
||||
<c:when test="${empty list.CASE_NO}">
|
||||
<td>-</td>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<td>${list.CASE_NO}</td>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
<!-- 담당자는 임으로 넣었음 나중에 수정 -->
|
||||
<td>${list.EXAMINER_ASSIGN_NAME}</td>
|
||||
<td>${list.REG_DT}</td>
|
||||
<td><a href="#" class="btn_look" onclick="goPage('view','${list.RCEPT_NO}');">접수상세</a></td>
|
||||
<td><a href="/user/mediation/case/01/155/checkMediationStep01.do" class="btn_look">진행중사건조회</a></td>
|
||||
<td class="table_number">접수</td>
|
||||
<td class="td_title"><a href="#none" class="color_333"><span class="pc_hide">문서 등록번호 : </span> 20240819-028</a></td>
|
||||
<td class="td_hide">홍길동</td>
|
||||
<td class="td_hide">홍길동, 정길동, 김길동, 정길동, 김길동</td>
|
||||
<td class="td_case_number"><i class="icon hide td_icon td_case_number"></i>202408-145</td>
|
||||
<td class="td_writer"><i class="icon hide td_icon td_writer"></i>김담당</td>
|
||||
<td class="td_hide">2024-08-20</td>
|
||||
</tr>
|
||||
</c:if>
|
||||
</c:forEach>
|
||||
</c:if>
|
||||
<c:if test="${empty myPageList}">
|
||||
<tr>
|
||||
<td colspan="9">등록된 데이터가 없습니다.</td>
|
||||
</tr>
|
||||
</c:if>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<p class="cf_text">※ 사건접수 완료 후 진행상황은 홈페이지 메뉴 분쟁조정 사건조회에서 조회가 가능합니다.</p>
|
||||
|
||||
<div class="mobile">
|
||||
<ul class="m_ul1">
|
||||
<c:if test="${not empty myPageList}">
|
||||
<c:forEach items="${myPageList}" var="list" varStatus="status">
|
||||
<li>
|
||||
<ul>
|
||||
<li><span class="m_ul_tit">상태</span> : ${list.STATE}</li>
|
||||
<li><span class="m_ul_tit">문서등록번호</span> : ${list.RCEPT_NO }</li>
|
||||
<li><span class="m_ul_tit">신청인</span> : ${list.APPLCNT_NM}</li>
|
||||
<li><span class="m_ul_tit">피신청인</span> : ${list.RESPONDENT_CEO } 외${list.RES_CNT-1 }명</li>
|
||||
<li><span class="m_ul_tit">등록번호</span> : ${list.CASE_NO}</li>
|
||||
<li><span class="m_ul_tit">담당자</span> : ${list.EXAMINER_ASSIGN_NAME}</li>
|
||||
<li><span class="m_ul_tit">신청일</span> : ${list.REG_DT}</li>
|
||||
<li><span class="m_ul_tit">접수</span> : <a href="#" class="btn_look">접수상세</a></li>
|
||||
<li><span class="m_ul_tit">진행중사건</span> : <a href="#" class="btn_look">진행중사건조회</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</c:forEach>
|
||||
</c:if>
|
||||
<c:if test="${empty myPageList}">
|
||||
<li>등록된 데이터가 없습니다.</li>
|
||||
</c:if>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<p class="tit5 mgt10 mgl10">* 사건접수 완료 후 진행상황은 홈페이지 메뉴 분쟁조정 사건조회에서 조회가 가능합니다.</p>
|
||||
<!-- 페이징 -->
|
||||
<div class="pager tal_c mgt30">
|
||||
<a href="javascript:goPage('paging', '1')" class="pre2">처음페이지</a>
|
||||
<c:choose>
|
||||
<c:when test="${pageMaker.prev}">
|
||||
<a href="javascript:goPage('paging', '${pageMaker.cri.page - 1}')" class="pre1">이전페이지</a>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<a href="javascript:goPage('paging', '${pageMaker.cri.page}')" class="pre1">이전페이지</a>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
<div class="tab_contents">
|
||||
<div class="table_top">
|
||||
<p class="list_total_number">전체 <span class="color_blue">3</span>건 (<span class="color_blue">1</span>/1페이지)</p>
|
||||
</div>
|
||||
|
||||
<c:forEach begin="${pageMaker.startPage}" end="${pageMaker.endPage }" var="idx">
|
||||
<c:choose>
|
||||
<c:when test="${idx == pageMaker.cri.page }">
|
||||
<a href="javascript:goPage('paging', '${idx}')" class="p_num p_num_on">${idx}</a>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<a href="javascript:goPage('paging', '${idx}')" class="p_num">${idx}</a>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
</c:forEach>
|
||||
<c:choose>
|
||||
<c:when test="${pageMaker.next}">
|
||||
<a href="javascript:goPage('paging', '${pageMaker.cri.page + 1}')" class="post1">다음페이지</a>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<a href="javascript:goPage('paging', '${pageMaker.cri.page}')" class="post1">다음페이지</a>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
<a href="javascript:goPage('paging', '${pageMaker.endPage}')" class="post2">마지막페이지</a>
|
||||
</div>
|
||||
<!-- 페이징 end-->
|
||||
</div>
|
||||
<div class="tab2 TAP2_2">
|
||||
<strong class="tab2Tit inblock indent disc2 <c:if test="${param.command=='temp'}">tab_on</c:if>">
|
||||
<a href="/user/mypage/case/01/168/myMediationList.do?command=temp&page=1">임시보관</a>
|
||||
</strong>
|
||||
</div>
|
||||
<div class="tbl4 pat30 border_t tab2Con tab2Con1 <c:if test="${empty param.command || param.command=='app'}">dis_none</c:if>">
|
||||
<h4 class="mgb10 inblock indent disc2 w100per">임시보관</h4>
|
||||
<table cellspacing="0" cellpadding="0" class="pc">
|
||||
<caption>임시보관 항목 : 상태, 문서등록번호, 신청인, 피신청인, 등록번호, 담당자, 신청일, 보기, 비고</caption>
|
||||
<colgroup >
|
||||
<col style="width:5%" />
|
||||
<col style="width:5%" />
|
||||
<col style="width:5%" />
|
||||
<col style="width:5%" />
|
||||
<col style="width:5%" />
|
||||
<div class="table_type_cols">
|
||||
<table>
|
||||
<colgroup>
|
||||
<col style="width:120px;">
|
||||
<col style="width:auto;">
|
||||
<col style="width:20%;">
|
||||
<col style="width:20%;">
|
||||
<col style="width:20%;">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">번호</th>
|
||||
<th scope="col">신청인</th>
|
||||
<th scope="col">조정유형</th>
|
||||
<th scope="col">보관일</th>
|
||||
<th scope="col">수정</th>
|
||||
<th>번호</th>
|
||||
<th>신청인</th>
|
||||
<th>조정유형</th>
|
||||
<th>보관일</th>
|
||||
<th>수정</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<c:if test="${not empty myPageList}">
|
||||
<c:forEach items="${myPageList}" var="list" varStatus="status">
|
||||
<c:if test="${list.REQUEST_CHECK == '1601000000' }">
|
||||
<tr>
|
||||
<td>${(pageMaker.totalCount - ((pageMaker.cri.page-1)*pageMaker.cri.perPageNum)) - status.index}</td>
|
||||
<td>${list.APPLCNT_NM }</td>
|
||||
<td>${list.CASE_GUBUN_NAME }</td>
|
||||
<td>${list.REG_DT }</td>
|
||||
<td><a href="/user/mypage/case/01/168/myMediationEdit.do?mediType=${list.CASE_GUBUN}&rceptNo=${list.RCEPT_NO}&fileGubun=4801000000" class="btn_look">수정</a></td>
|
||||
<td class="table_number">3</td>
|
||||
<td class="td_person"><i class="icon hide td_icon td_person"></i>홍길동</td>
|
||||
<td class="td_type"><i class="icon hide td_icon td_type"></i>공정거래</td>
|
||||
<td class="td_hide">2024-08-20</td>
|
||||
<td class="td_title"><button type="button" class="btn btn btn_35 darkblue_border btn_edit">수정하기</button></td>
|
||||
</tr>
|
||||
</c:if>
|
||||
</c:forEach>
|
||||
</c:if>
|
||||
|
||||
<c:if test="${empty myPageList}">
|
||||
<tr>
|
||||
<td colspan="9">등록된 데이터가 없습니다.</td>
|
||||
</tr>
|
||||
</c:if>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="mobile">
|
||||
<ul class="m_ul1">
|
||||
<c:if test="${not empty myPageList}">
|
||||
<c:forEach items="${myPageList}" var="list" varStatus="status">
|
||||
<li>
|
||||
<ul>
|
||||
<li><span class="m_ul_tit">번호</span> : ${(pageMaker.totalCount - ((pageMaker.cri.page-1)*pageMaker.cri.perPageNum)) - status.index}</li>
|
||||
<li><span class="m_ul_tit">신청인</span> : ${list.APPLCNT_NM }</li>
|
||||
<li><span class="m_ul_tit">조정유형</span> : ${list.CASE_GUBUN_NAME }</li>
|
||||
<li><span class="m_ul_tit">보관일</span> : ${list.REG_DT }</li>
|
||||
<li><span class="m_ul_tit">수정</span> : <a href="/user/mypage/case/01/168/myMediationEdit.do?mediType=${list.CASE_GUBUN}&rceptNo=${list.RCEPT_NO}&fileGubun=4801000000" class="btn_look">수정</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</c:forEach>
|
||||
</c:if>
|
||||
<c:if test="${empty myPageList}">
|
||||
<li>등록된 데이터가 없습니다.</li>
|
||||
</c:if>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- 페이징 -->
|
||||
<div class="pager tal_c mgt30">
|
||||
<a href="javascript:goPage('paging', '1')" class="pre2">처음페이지</a>
|
||||
<c:choose>
|
||||
<c:when test="${pageMaker.prev}">
|
||||
<a href="javascript:goPage('paging', '${pageMaker.cri.page - 1}')" class="pre1">이전페이지</a>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<a href="javascript:goPage('paging', '${pageMaker.cri.page}')" class="pre1">이전페이지</a>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
|
||||
<c:forEach begin="${pageMaker.startPage}" end="${pageMaker.endPage }" var="idx">
|
||||
<c:choose>
|
||||
<c:when test="${idx == pageMaker.cri.page }">
|
||||
<a href="javascript:goPage('paging', '${idx}')" class="p_num p_num_on">${idx}</a>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<a href="javascript:goPage('paging', '${idx}')" class="p_num">${idx}</a>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
</c:forEach>
|
||||
<c:choose>
|
||||
<c:when test="${pageMaker.next}">
|
||||
<a href="javascript:goPage('paging', '${pageMaker.cri.page + 1}')" class="post1">다음페이지</a>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<a href="javascript:goPage('paging', '${pageMaker.cri.page}')" class="post1">다음페이지</a>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
<a href="javascript:goPage('paging', '${pageMaker.endPage}')" class="post2">마지막페이지</a>
|
||||
</div>
|
||||
<!-- 페이징 end-->
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</div><!-- E : sub_con -->
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user