88 lines
3.6 KiB
Plaintext
88 lines
3.6 KiB
Plaintext
<%--
|
|
업무시스템(관리자)
|
|
Class Name : xxxTest.jsp
|
|
Description : xxx 테스트 페이지
|
|
Modification Information
|
|
|
|
수정일 수정자 수정내용
|
|
------- -------- ---------------------------
|
|
2024.08.12 이준호 내용
|
|
|
|
author : 이준호
|
|
since : 2024.08.12
|
|
|
|
--%>
|
|
<%-- 공통 JS 함수 임포트 : /jsp/layout/adminLayout.jsp --%>
|
|
<%@ page contentType="text/html; charset=utf-8"%>
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
|
|
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
|
|
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
|
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
|
|
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<title>xxx 테스트</title>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
<script type="text/javaScript" language="javascript">
|
|
$( document ).ready(function(){
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<!-- 아래 목록의 양식은 퍼블리싱 페이지와 다름 검색, 줄수 표시, 항목정렬버튼, 번호항목, 첨부파일, 페이징 부분만 참고 -->
|
|
<div class="contWrap">
|
|
<div class="pageCont">
|
|
<div class="listSerch">
|
|
제목 :
|
|
<!-- 검색 -->
|
|
<input id="searchKeyword" name="searchKeyword" class="recentSearch" type="text" value="<c:out value='${xxxVO.searchKeyword}'/>" size="25" title="검색" maxlength="100" />
|
|
<input type="button" class="btnType1" value="검색" onclick="linkPage(1); return false;">
|
|
</div>
|
|
<div class="listTop">
|
|
<p class="tType5">게시판 수 :<span class="tType4 c_456ded fwBold"><c:out value="${paginationInfo.totalRecordCount}"/></span>건</p>
|
|
<div class="rightWrap">
|
|
<input type="button" class="printBtn">
|
|
<!-- 줄수 표시 -->
|
|
<select name="pageUnit" id="pageUnit" class="select" title="검색조건선택" onchange="linkPage(1);">
|
|
<option value='10' <c:if test="${xxxVO.pageUnit == '10' or xxxVO.pageUnit == ''}">selected</c:if>>10줄</option>
|
|
<option value='20' <c:if test="${xxxVO.pageUnit == '20'}">selected</c:if>>20줄</option>
|
|
<option value='30' <c:if test="${xxxVO.pageUnit == '30'}">selected</c:if>>30줄</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="tableWrap">
|
|
<table class="tbType1">
|
|
<colgroup>
|
|
<col style="width: 20%">
|
|
<col style="width: 20%">
|
|
<col style="width: 20%">
|
|
<col style="width: 20%">
|
|
<col style="width: 20%">
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<!-- 항목정렬 버튼 사용자 -> web_common.js, 관리자 -> ncms_common.js에서 처리 id를 'sort_'+'xxxVO 변수명'으로 명명-->
|
|
<th><input type="checkbox" name="checkAll" id="checkAll" class="check2" value="1" onClick="fnCheckAll();"></th>
|
|
<th>번호<input type="button" class="sort sortBtn" id="sort_xxxId"></th>
|
|
<th>휴대폰번호<input type="button" class="sort sortBtn" id="sort_xxxPhone"></th>
|
|
<th>내용<input type="button" class="sort sortBtn" id="sort_xxxContent"></th>
|
|
<th>일시<input type="button" class="sort sortBtn" id="sort_xxxPnttm"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<c:if test="${empty xxxList}">
|
|
<tr><td colspan="8"><spring:message code="common.nodata.msg" /></td></tr>
|
|
</c:if>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="btnWrap">
|
|
<input type="button" class="btnType2" value="삭제" onclick="fn_xxx_delete(); return false;">
|
|
<input type="button" class="btnType1" value="등록" onclick="fn_xxx_regist(); return false;">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|