|
|
@ -2,13 +2,13 @@
|
|
|
|
<%@ include file="/WEB-INF/jsp/framework/taglibs.jsp"%>
|
|
|
|
<%@ include file="/WEB-INF/jsp/framework/taglibs.jsp"%>
|
|
|
|
|
|
|
|
|
|
|
|
<form name="frmSearch" id="frmSearch" method="post">
|
|
|
|
<form name="frmSearch" id="frmSearch" method="post">
|
|
|
|
<div class="search">
|
|
|
|
<div class="search r2">
|
|
|
|
|
|
|
|
|
|
|
|
<table>
|
|
|
|
<table>
|
|
|
|
<caption>검색조건</caption>
|
|
|
|
<caption>검색조건</caption>
|
|
|
|
<colgroup>
|
|
|
|
<colgroup>
|
|
|
|
<col style="width: 8%;"/>
|
|
|
|
<col style="width: 400px;"/>
|
|
|
|
<col style="width: 30%;"/>
|
|
|
|
<col/>
|
|
|
|
<col/>
|
|
|
|
<col/>
|
|
|
|
<col/>
|
|
|
|
<col/>
|
|
|
|
<col/>
|
|
|
|
<col/>
|
|
|
@ -17,16 +17,16 @@
|
|
|
|
</colgroup>
|
|
|
|
</colgroup>
|
|
|
|
<tbody>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
<td colspan="6">
|
|
|
|
<td>
|
|
|
|
<code:select id="sbscrbSttus" name="sbscrbSttus" codeId="XIT013" title="사용자상태" cls="selectBox" alt="selectBox tag"/>
|
|
|
|
<code:select id="sbscrbSttus" name="sbscrbSttus" codeId="XIT013" title="사용자상태" cls="selectBox" alt="selectBox tag"/>
|
|
|
|
<select name="searchCondition" id="searchCondition" title="검색구분" class="selectBox">
|
|
|
|
<select name="searchCondition" id="searchCondition" title="검색구분" class="selectBox">
|
|
|
|
<option value="userId">사용자ID</option>
|
|
|
|
<option value="userId">사용자ID</option>
|
|
|
|
<option value="userNm">이름</option>
|
|
|
|
<option value="userNm">이름</option>
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
<input name="searchKeyword" title="검색어" type="text"/>
|
|
|
|
<input name="searchKeyword" id="searchKeyword" title="검색어" type="text"/>
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<td colspan="6">
|
|
|
|
<input type="button" id="btnSearch" class="btnSearch" title="검색" value="검색"/>
|
|
|
|
<input type="button" id="btnSearch" class="btn_search" title="검색" value="검색"/>
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</tbody>
|
|
|
@ -185,7 +185,11 @@
|
|
|
|
api: {
|
|
|
|
api: {
|
|
|
|
readData: {
|
|
|
|
readData: {
|
|
|
|
url: '<c:url value="/framework/biz/mng/usr/findUsers.do"/>'
|
|
|
|
url: '<c:url value="/framework/biz/mng/usr/findUsers.do"/>'
|
|
|
|
,serializer: (params) => fnAddPageInfo(document.frmSearch, params)
|
|
|
|
,serializer: (params) => {
|
|
|
|
|
|
|
|
const schKey = $('#searchCondition').val();
|
|
|
|
|
|
|
|
if(schKey) return getPageParam({[schKey]: $('#searchKeyword').val(), sbscrbSttus: $('#sbscrbSttus').val()}, params);
|
|
|
|
|
|
|
|
return getPageParam({sbscrbSttus: $('#sbscrbSttus').val()}, params);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|