이준호 전자조정시스템 고도화 커밋
- (사용자) 조정신청 step3 신청취지 예문 변경
This commit is contained in:
parent
f65ca13a3e
commit
b5c689d5e4
@ -215,6 +215,8 @@ public class AdjstReqWebController {
|
||||
// }
|
||||
model.addAttribute("exmpList", exmpList);
|
||||
|
||||
|
||||
|
||||
return "/web/kccadr/adjst/popup/adjstReqOpenExamplePop";
|
||||
}
|
||||
|
||||
|
||||
@ -374,9 +374,14 @@ public class AdjstExpController {
|
||||
*/
|
||||
@RequestMapping(value= {"/web/kccadr/adjstExp/popup/adjstReqOpenExamplePop.do"})
|
||||
public String adjstReqOpenExamplePop(@ModelAttribute("adjstReqVO") AdjstReqVO adjstReqVO, ModelMap model, HttpServletRequest request) throws Exception {
|
||||
|
||||
List<AdjstReqVO> exmpList = adjstReqService.selectAdjstReqOpenExamplePop(adjstReqVO);
|
||||
|
||||
model.addAttribute("ccTy", adjstReqVO.getCcTy());
|
||||
model.addAttribute("exmpCd", adjstReqVO.getExmpCd());
|
||||
|
||||
model.addAttribute("exmpList", exmpList);
|
||||
|
||||
return "/web/kccadr/adjstExp/popup/adjstReqOpenExamplePop";
|
||||
}
|
||||
|
||||
|
||||
@ -31,7 +31,13 @@ $(document).ready(function(){
|
||||
activeTarget.hide();
|
||||
$('[data-tooltip="fee_info_popup"]').eq(0).focus();
|
||||
});
|
||||
})
|
||||
});
|
||||
|
||||
// 신청취지 텍스트에 추가
|
||||
function addText(obj){
|
||||
$('#reqCn1').text($('#reqCn1').text()+obj.text);
|
||||
}
|
||||
|
||||
</script>
|
||||
<style type="text/css">
|
||||
.fee_info_popup {overflow:hidden;overflow-y:auto;max-height:600px;}
|
||||
@ -43,44 +49,19 @@ $(document).ready(function(){
|
||||
<p>청구취지 작성예시</p> <button class="btn_popup_close tooltip-close" data-focus="fee_info_popup_close" title="팝업 닫기"><i></i></button>
|
||||
</div>
|
||||
<div class="popup_cont">
|
||||
<div class="work_flow_wrap off">
|
||||
<div class="work_tit">
|
||||
<p>금전청구 일반</p>
|
||||
<button type="button" title="열림" class="btn_open"><i></i></button>
|
||||
</div>
|
||||
<div class="work_cont">
|
||||
<dl>
|
||||
<dt>- 기본형</dt>
|
||||
<dd>피고는 원고에게 <span>△△,△△△,△△△원</span>을 지급하라.</dd>
|
||||
</dl>
|
||||
<dl>
|
||||
<dt>- 부대청구(이자 등)가 있는 경우</dt>
|
||||
<dd>피고는 원고에게 <span>△△,△△△,△△△원</span>과 이에 대하여 <span>△△△△.△△.△△</span>부터 다 갚믄 날까지 연 <span>△△%</span>의 비율로 계산한 돈을 지급하라.</dd>
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
<div class="work_flow_wrap off">
|
||||
<div class="work_tit">
|
||||
<p>보증채무금</p>
|
||||
<button type="button" title="열림" class="btn_open"><i></i></button>
|
||||
</div>
|
||||
<div class="work_cont">
|
||||
<div class="text">
|
||||
피고는 원고에게 <span>△△,△△△,△△△원</span>과 이에 대하여 <span>△△△△.△△.△△</span>부터 다 갚믄 날까지 연 <span>△△%</span>의 비율로 계산한 돈을 지급하라.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="work_flow_wrap off">
|
||||
<div class="work_tit">
|
||||
<p>임대차보증금반환</p>
|
||||
<button type="button" title="열림" class="btn_open"><i></i></button>
|
||||
</div>
|
||||
<div class="work_cont">
|
||||
<div class="text">
|
||||
피고는 원고에게 <span>△△,△△△,△△△원</span>과 이에 대하여 <span>△△△△.△△.△△</span>부터 다 갚믄 날까지 연 <span>△△%</span>의 비율로 계산한 돈을 지급하라.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<c:forEach var="list" items="${exmpList}" varStatus="status">
|
||||
<div class="work_flow_wrap off">
|
||||
<div class="work_tit">
|
||||
<p><c:out value="${list.exmpTit}"/></p>
|
||||
<button type="button" title="열림" class="btn_open"><i></i></button>
|
||||
</div>
|
||||
<div class="work_cont">
|
||||
<div class="text">
|
||||
<a href="#" onclick="addText(this); return false;"><c:out value="${list.exmpCn}"/></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</c:forEach>
|
||||
<div class="btn_wrap">
|
||||
<button class="btnType01 tooltip-close" data-focus="fee_info_popup_close" data-focus-next="fee_info_popup">닫기</button>
|
||||
</div>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user