62 lines
1.9 KiB
Plaintext
62 lines
1.9 KiB
Plaintext
<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"
|
|
%><%@ include file="/common/taglib.jsp"
|
|
%><%@ page import="egovframework.main.MainGlobals"
|
|
%><%
|
|
/**
|
|
* @Class Name : HmsDeptAdminDetail.jsp
|
|
* @Description : HmsDeptAdmin Detail 화면
|
|
* @Modification Information
|
|
*
|
|
* @author 최석희
|
|
* @since 2016-09-09
|
|
* @version 1.0
|
|
* @see
|
|
*
|
|
* Copyright (C) All right reserved.
|
|
*/
|
|
%><script type="text/javascript" src="${pageContext.request.contextPath}/js/cms/hmsDeptAdmin.js"></script>
|
|
<form:form commandName="searchVO" id="detailForm" action="${searchVO.parentUrl}">
|
|
<form:hidden path="bmode" />
|
|
<form:hidden path="pageIndex" />
|
|
<form:hidden path="deptSeq" />
|
|
<form:hidden path="searchCondition" />
|
|
<form:hidden path="searchKeyword" />
|
|
</form:form>
|
|
|
|
<div class="location_box">
|
|
<div class="loc_h3"><h3><%=MainGlobals.MENU_USER%></h3><span></span></div>
|
|
<span class="loccation"><a href="/main.do" title="홈으로이동"><img src="/images/admin/loccation_home.png" alt="홈" /></a> > <strong><%=MainGlobals.MENU_USER%></strong></span>
|
|
</div>
|
|
|
|
<div class="contents">
|
|
<!--
|
|
<div class="boardHead">
|
|
<div class="fR">
|
|
<input id="searchWrd" name="searchWrd" title="검색" type="text" placeholder="이름을 검색하세요" value=""/>
|
|
<a href="#" class="btn_search_gray">검색</a>
|
|
</div>
|
|
</div>
|
|
-->
|
|
|
|
<h4 class="mb10">${hmsDeptVO.deptNm}</h4>
|
|
<table class="tbl_basic">
|
|
<caption>성명, 전화번호, 직책, 담당업무를 나타낸표</caption>
|
|
<colgroup></colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">성명</th>
|
|
<th scope="col">전화번호</th>
|
|
<th scope="col">담당업무</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<c:forEach items="${resultList}" var="list">
|
|
<tr>
|
|
<td width="100">${list.userNm}</td>
|
|
<td width="100">${list.tel}</td>
|
|
<td class="left">${list.jobTitle}</td>
|
|
</tr>
|
|
</c:forEach>
|
|
</tbody>
|
|
</table>
|
|
</div> |