|
|
|
@ -6,8 +6,8 @@
|
|
|
|
|
<div id="DataTables_Table_0_wrapper" class="dataTables_wrapper dt-bootstrap5 no-footer">
|
|
|
|
|
|
|
|
|
|
<div class="d-flex flex-row justify-content-between p-3">
|
|
|
|
|
<div class="d-flex" id="${infoPrefix}-query">
|
|
|
|
|
<div class="input-group me-3">
|
|
|
|
|
<div class="d-flex flex-grow-1 me-5" id="${infoPrefix}-query">
|
|
|
|
|
<div class="input-group me-3 w-px-400">
|
|
|
|
|
<select id="${infoPrefix}by" name="by" onchange="document.getElementById('${infoPrefix}term').focus();" aria-controls="DataTables_Table_0" class="form-select">
|
|
|
|
|
<option value="${infoPrefix}Name">이름</option>
|
|
|
|
|
<option value="${infoPrefix}Account">계정</option>
|
|
|
|
@ -15,13 +15,20 @@
|
|
|
|
|
<input id="${infoPrefix}term" name="term" autofocus type="text" placeholder="조회 조건을 입력하십시오." class="form-control">
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
<label for="${infoPrefix}status" class="form-label fw-bold w-px-120 d-flex flex-wrap align-content-center justify-content-center">상태</label>
|
|
|
|
|
<label for="${infoPrefix}status" class="form-label fw-bold px-3 d-flex flex-wrap align-content-center justify-content-center">상태</label>
|
|
|
|
|
<select id="${infoPrefix}status" name="status" class="form-select">
|
|
|
|
|
<option value="">전체</option>
|
|
|
|
|
<option value="A">신청</option>
|
|
|
|
|
<option value="P">승인</option>
|
|
|
|
|
<option value="D">삭제</option>
|
|
|
|
|
</select>
|
|
|
|
|
<label for="${infoPrefix}type" class="form-label fw-bold px-3 d-flex flex-wrap align-content-center justify-content-center">접속구분</label>
|
|
|
|
|
<select id="${infoPrefix}type" name="type" class="form-select">
|
|
|
|
|
<option value="">전체</option>
|
|
|
|
|
<c:forEach items="${CMN009List}" var="item">
|
|
|
|
|
<option value="${item.code}">${item.value}</option>
|
|
|
|
|
</c:forEach>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<button onclick="search${infoPrefix}s();" class="btn btn-primary">찾기</button>
|
|
|
|
@ -83,7 +90,8 @@ function search${infoPrefix}s() {
|
|
|
|
|
${infoPrefix}Control.query = {
|
|
|
|
|
by: $("#${infoPrefix}-query [name='by']").val(),
|
|
|
|
|
term: $("#${infoPrefix}-query [name='term']").val(),
|
|
|
|
|
status: $("#${infoPrefix}-query [name='status']").val()
|
|
|
|
|
status: $("#${infoPrefix}-query [name='status']").val(),
|
|
|
|
|
type: $("#${infoPrefix}-query [name='type']").val(),
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if(${infoPrefix}Control.query.by == "userAccount"){
|
|
|
|
|