|
@@ -0,0 +1,190 @@
|
|
|
+<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
|
|
|
+<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
|
|
|
+<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
|
|
|
+<%@ page language="java" contentType="text/html; charset=UTF-8"
|
|
|
+ pageEncoding="UTF-8"%>
|
|
|
+<jsp:include page="${data._INCLUDE}/header.jsp"></jsp:include>
|
|
|
+</head>
|
|
|
+<body>
|
|
|
+ <div class="wrapper">
|
|
|
+ <jsp:include page="${data._INCLUDE}/sidebar.jsp"></jsp:include>
|
|
|
+
|
|
|
+ <div class="main">
|
|
|
+ <jsp:include page="${data._INCLUDE}/top.jsp"></jsp:include>
|
|
|
+
|
|
|
+ <main class="content">
|
|
|
+ <div class="container-fluid p-0">
|
|
|
+ <!-- 의료진 관리 START -->
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-12 col-lg-6">
|
|
|
+ <h1 class="h3 mb-3">공지사항</h1>
|
|
|
+ </div>
|
|
|
+ <div class="col-12 col-lg-6 text-right">
|
|
|
+ <nav aria-label="breadcrumb">
|
|
|
+ <ol class="breadcrumb">
|
|
|
+ <li class="breadcrumb-item"><a href="javscript:;">Home</a></li>
|
|
|
+ <li class="breadcrumb-item">공지사항</li>
|
|
|
+<!-- <li class="breadcrumb-item active">의료진 관리</li> -->
|
|
|
+ </ol>
|
|
|
+ </nav>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-12">
|
|
|
+ <div class="card">
|
|
|
+ <form action="?" method="get">
|
|
|
+ <div class="card-body">
|
|
|
+ <table class="table mobile-table">
|
|
|
+ <colgroup>
|
|
|
+ <col style="width:10%">
|
|
|
+ <col style="width:40%">
|
|
|
+ <col style="width:10%">
|
|
|
+ <col style="width:40%">
|
|
|
+ </colgroup>
|
|
|
+ <tr>
|
|
|
+ <th>구분</th>
|
|
|
+ <td>
|
|
|
+ <div class="form-row">
|
|
|
+ <div class="col-6">
|
|
|
+ <select class="custom-select form-control" id="selectState" name="selectState">
|
|
|
+ <option value="nbTitle">제목</option>
|
|
|
+ <option value="nbContent">내용</option>
|
|
|
+<%-- <option value="sCenterName" <c:if test="${selectState eq 'sCenterName'}"> selected="selected"</c:if>>치료센터명</option> --%>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ <div class="col-6">
|
|
|
+ <input type="text" class="form-control" name="sData" value="${searchTxt}" placeholder="검색어를 입력하세요.">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </td>
|
|
|
+ <td colspan="2">
|
|
|
+ <button class="btn btn-primary">검색</button>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-12">
|
|
|
+ <div class="card">
|
|
|
+ <div class="card-body">
|
|
|
+ <div class="row mb-3">
|
|
|
+ <div class="col-6">전체 :
|
|
|
+ <fmt:formatNumber value="${total}" pattern="#,###" />
|
|
|
+ </div>
|
|
|
+ <div class="col-6 text-right">
|
|
|
+ <c:if test="${sesGroupIdx eq '1'}">
|
|
|
+ <button class="btn btn-primary" onclick="location.href='./new';">게시글 등록</button>
|
|
|
+ </c:if>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="table-responsive">
|
|
|
+ <table class="table table-striped text-center">
|
|
|
+ <colgroup>
|
|
|
+ <col style=" width: 10%; ">
|
|
|
+ <col style=" width: 40%; ">
|
|
|
+ <col style=" width: 15%; ">
|
|
|
+ <col style=" width: 15%; ">
|
|
|
+ <col style=" width: 10%; ">
|
|
|
+ <col style=" width: 10%; ">
|
|
|
+ </colgroup>
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th>번호</th>
|
|
|
+ <th>제목</th>
|
|
|
+ <th>작성자</th>
|
|
|
+ <th>작성일</th>
|
|
|
+ <th>조회</th>
|
|
|
+ <th>파일</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody>
|
|
|
+<%-- <c:choose> --%>
|
|
|
+<%-- <c:when test="${total > 0}"> --%>
|
|
|
+<%-- <c:forEach var="l" items="${item}"> --%>
|
|
|
+<!-- <tr> -->
|
|
|
+<%-- <td><c:out value="${l.num}" /></td> --%>
|
|
|
+<!-- <td> -->
|
|
|
+<%-- <a href="./info?staffId=${l.id}"><c:out value="${l.id}" /></a> --%>
|
|
|
+<!-- </td> -->
|
|
|
+<%-- <td><c:out value="${l.name}" /></td> --%>
|
|
|
+<%-- <td><c:out value="${l.centerName}" /></td> --%>
|
|
|
+<!-- <td> -->
|
|
|
+<%-- <c:if test="${l.groupIdx eq 1}">시스템관리자</c:if> --%>
|
|
|
+<%-- <c:if test="${l.groupIdx eq 2}">관리자</c:if> --%>
|
|
|
+<%-- <c:if test="${l.groupIdx eq 3}">일반사용자</c:if> --%>
|
|
|
+<!-- </td> -->
|
|
|
+<%-- <td><c:out value="${l.lastLoginTime}" /></td> --%>
|
|
|
+<%-- <td><c:out value="${l.createDate}" /></td> --%>
|
|
|
+<!-- <td> -->
|
|
|
+<%-- <c:choose> --%>
|
|
|
+<%-- <c:when test="${l.useYn == 'Y'}"> --%>
|
|
|
+<!-- <span class="text-success">활성</span> -->
|
|
|
+<%-- </c:when> --%>
|
|
|
+<%-- <c:otherwise> --%>
|
|
|
+<!-- <span class="text-danger">비활성</span> -->
|
|
|
+<%-- </c:otherwise> --%>
|
|
|
+
|
|
|
+<%-- </c:choose> --%>
|
|
|
+<!-- </td> -->
|
|
|
+<!-- </tr> -->
|
|
|
+<%-- </c:forEach> --%>
|
|
|
+<%-- </c:when> --%>
|
|
|
+<%-- <c:otherwise> --%>
|
|
|
+<!-- <tr> -->
|
|
|
+<!-- <td colspan="9">등록된 게시글이 없습니다.</td> -->
|
|
|
+<!-- </tr> -->
|
|
|
+<%-- </c:otherwise> --%>
|
|
|
+<%-- </c:choose> --%>
|
|
|
+ <tr>
|
|
|
+ <td>1</td>
|
|
|
+ <td>
|
|
|
+ <a href="javscript:;">제목제목제목제목제목</a>
|
|
|
+ </td>
|
|
|
+ <td>시스템(system)</td>
|
|
|
+ <td>2020-10-13 15:23</td>
|
|
|
+ <td>1501</td>
|
|
|
+ <td>-</td>
|
|
|
+ </tr>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ <div class="row mt-5">
|
|
|
+ <div class="col-12 col-lg-6 mb-2">
|
|
|
+<!-- <select class="custom-select form-control col-md-2" id="inputState" name="inputState"> -->
|
|
|
+<!-- <option value="success" selected="">전체</option> -->
|
|
|
+<!-- <option value="info">입소</option> -->
|
|
|
+<!-- <option value="warning">퇴소</option> -->
|
|
|
+<!-- </select> -->
|
|
|
+ </div>
|
|
|
+ <div class="col-12 col-lg-6 mb-2">
|
|
|
+ <jsp:include page="${data._INCLUDE}/paging.jsp" flush="true">
|
|
|
+ <jsp:param name="firstPageNo" value="${paging.firstPageNo}" />
|
|
|
+ <jsp:param name="prevPageNo" value="${paging.prevPageNo}" />
|
|
|
+ <jsp:param name="startPageNo" value="${paging.startPageNo}" />
|
|
|
+ <jsp:param name="pageNo" value="${paging.pageNo}" />
|
|
|
+ <jsp:param name="endPageNo" value="${paging.endPageNo}" />
|
|
|
+ <jsp:param name="nextPageNo" value="${paging.nextPageNo}" />
|
|
|
+ <jsp:param name="finalPageNo" value="${paging.finalPageNo}" />
|
|
|
+ <jsp:param name="preFix" value="${paging.preFix}" />
|
|
|
+ <jsp:param name="url" value="${paging.url}" />
|
|
|
+ <jsp:param name="total" value="${paging.totalCount}" />
|
|
|
+ </jsp:include>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!-- 의료진 관리 END -->
|
|
|
+ </div>
|
|
|
+ </main>
|
|
|
+
|
|
|
+ <jsp:include page="${data._INCLUDE}/footer.jsp"></jsp:include>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</body>
|
|
|
+</html>
|