조정위원 사용자 화면 검색자, 버튼 노출, 테이블 레이아웃 수정

This commit is contained in:
JooYoung 2022-10-28 11:06:58 +09:00
parent 2dc575bec6
commit 2a84101c8e
4 changed files with 13 additions and 16 deletions

View File

@ -207,10 +207,7 @@
) )
<isNotEmpty property="searchKeyword"> <isNotEmpty property="searchKeyword">
<isEqual prepend="AND" property="searchCondition" compareValue="1"> <isEqual prepend="AND" property="searchCondition" compareValue="1">
RS.ADR_SEQ LIKE CONCAT('%' , #searchKeyword#, '%') RS.ADR_NO LIKE CONCAT('%' , #searchKeyword#, '%')
</isEqual>
<isEqual prepend="AND" property="searchCondition" compareValue="2">
TO_CHAR(RS.SBMT_DE,'YYYY-MM-DD') = #searchKeyword#
</isEqual> </isEqual>
<isEqual prepend="AND" property="searchCondition" compareValue="3"> <isEqual prepend="AND" property="searchCondition" compareValue="3">
RS.APPLI_CANT_NM LIKE CONCAT('%' , #searchKeyword#, '%') RS.APPLI_CANT_NM LIKE CONCAT('%' , #searchKeyword#, '%')
@ -229,15 +226,15 @@
<isNotEmpty prepend="AND" property="searchStatus"> <isNotEmpty prepend="AND" property="searchStatus">
RS.STAT_CD = #searchStatus# RS.STAT_CD = #searchStatus#
</isNotEmpty> </isNotEmpty>
<isEqual property="searchCondition" compareValue="2">
<isNotEmpty prepend="AND" property="searchStartDt">
TO_CHAR(RS.SBMT_DE,'YYYYMMDD') <![CDATA[ >= ]]> REPLACE(#searchStartDt#, '-' , '')
</isNotEmpty>
<isNotEmpty prepend="AND" property="searchStartDt"> <isNotEmpty prepend="AND" property="searchEndDt">
TO_CHAR(RS.FRST_REGIST_PNTTM,'YYYYMMDD') <![CDATA[ >= ]]> REPLACE(#searchStartDt#, '-' , '') TO_CHAR(RS.SBMT_DE,'YYYYMMDD')<![CDATA[ <= ]]> REPLACE(#searchEndDt#, '-' , '')
</isNotEmpty> </isNotEmpty>
</isEqual>
<isNotEmpty prepend="AND" property="searchEndDt">
TO_CHAR(RS.FRST_REGIST_PNTTM,'YYYYMMDD')<![CDATA[ <= ]]> REPLACE(#searchEndDt#, '-' , '')
</isNotEmpty>
ORDER BY 1=1 ORDER BY 1=1
<isNotEmpty property="searchSortCnd"> <isNotEmpty property="searchSortCnd">
,$searchSortCnd$ ,$searchSortCnd$

View File

@ -158,7 +158,7 @@
</c:forEach> </c:forEach>
<c:if test="${fn:length(list) eq 0}"> <c:if test="${fn:length(list) eq 0}">
<tr> <tr>
<td colspan="3"> <td colspan="4">
<p>조회된 의견이 없습니다.</p> <p>조회된 의견이 없습니다.</p>
</td> </td>
</tr> </tr>

View File

@ -150,7 +150,7 @@
<div class="btn_wrap btn_layout03"> <div class="btn_wrap btn_layout03">
<div class="btn_left"> <div class="btn_left">
<button type="button" class="btnType01" onclick="fnc_view_step_1_popup(); return false;">문서보기</button> <button type="button" class="btnType01" onclick="fnc_view_step_1_popup(); return false;">문서보기</button>
<button type="button" class="btnType01" onclick="fnc_view_download_step_1(); return false;">선택다운로드</button> <!-- <button type="button" class="btnType01" onclick="fnc_view_download_step_1(); return false;">선택다운로드</button> -->
</div> </div>
<div class="btn_right"> <div class="btn_right">
<button type="button" class="btnType11 btn_list" onclick="fncGoList(); return false;">목록</button> <button type="button" class="btnType11 btn_list" onclick="fncGoList(); return false;">목록</button>

View File

@ -233,7 +233,7 @@
<c:forEach var="list" items="${resPerson}" varStatus="status"> <c:forEach var="list" items="${resPerson}" varStatus="status">
<div class="tb_wrap"> <div class="tb_wrap">
<div class="tb_top"> <div class="tb_top">
<p>피신청인 정보</p> <p>피신청인 정보<c:out value="${status.index+1}" /></p>
</div> </div>
<table class="tbType01"> <table class="tbType01">
<caption>피신청인 정보 : 피신청인 분류, 피신청인 이름, 주소, 이메일, 연락처등의 정보제공</caption> <caption>피신청인 정보 : 피신청인 분류, 피신청인 이름, 주소, 이메일, 연락처등의 정보제공</caption>