121 lines
3.6 KiB
Plaintext
121 lines
3.6 KiB
Plaintext
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
|
pageEncoding="UTF-8"%>
|
|
<%@ page import="com.pms.common.utils.*"%>
|
|
<%@ page import="java.util.*"%>
|
|
<%@include file="/init.jsp"%>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<link rel="stylesheet" href="css/basic.css">
|
|
<title><%=Constants.SYSTEM_NAME%></title>
|
|
|
|
<script>
|
|
var result = "${result}";
|
|
var message = "${message}";
|
|
$(function(){
|
|
$(document).ready(function(){
|
|
$("#btnModify").click(function(){
|
|
//if(confirm("Edit Mode로 이동하시겠습니까?")){
|
|
document.form1.action = "/admin/userMainFormPopup.do";
|
|
document.form1.submit();
|
|
//}
|
|
});
|
|
$("#btnDelete").click(function(){
|
|
var userId = $("#userId").val();
|
|
fn_deleteUser(userId);
|
|
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
<script>
|
|
function fn_deleteUser(userId){
|
|
if(confirm("삭제 하시겠습니까?")){
|
|
$.ajax({
|
|
url:"/admin/userDeletePopup.do",
|
|
type:"POST",
|
|
data:{"userId":userId},
|
|
dataType:"json",
|
|
async:false,
|
|
success:function(data){
|
|
opener.fn_search();
|
|
self.close();
|
|
},
|
|
error: function(jqxhr, status, error){
|
|
}
|
|
});
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<section id="commonSection">
|
|
<div class=admin_title>
|
|
<h2>사용자 비번관리</h2>
|
|
</div>
|
|
<div id="adminPopupFormWrap">
|
|
<form id="form1" name="form1" method="post">
|
|
<input type="hidden" id="userId" name="userId" value="${info.USER_ID}">
|
|
<table id="adminPopupForm">
|
|
<colgroup>
|
|
<col width="37%" />
|
|
<col width="63%" />
|
|
</colgroup>
|
|
<tbody>
|
|
<tr>
|
|
<td><label>사용자 ID</label></td>
|
|
<td style="font-size:13px;" class="admin_tr_data_border_bottom">${info.USER_ID}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label>사용자명</label></td>
|
|
<td style="font-size:13px;" class="admin_tr_data_border_bottom">${info.USER_NAME}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label>사원번호</label></td>
|
|
<td style="font-size:13px;" class="admin_tr_data_border_bottom">${info.SABUN}</td>
|
|
</tr>
|
|
<%-- <tr>
|
|
<td><label>업체구분</label></td>
|
|
<td style="font-size:13px;" class="admin_tr_data_border_bottom">${info.USER_TYPE_NAME}</td>
|
|
</tr> --%>
|
|
<tr>
|
|
<td><label>부서명</label></td>
|
|
<td style="font-size:13px;" class="admin_tr_data_border_bottom">${info.DEPT_NAME}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label>Cell Phone</label></td>
|
|
<td style="font-size:13px;" class="admin_tr_data_border_bottom">${info.CELL_PHONE}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label>EMAIL</label></td>
|
|
<td style="font-size:13px;" class="admin_tr_data_border_bottom">${info.EMAIL}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label>OFFICE NO</label></td>
|
|
<td style="font-size:13px;" class="admin_tr_data_border_bottom">${info.TEL}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label>FAX NO</label></td>
|
|
<td style="font-size:13px;" class="admin_tr_data_border_bottom">${info.FAX_NO}</td>
|
|
</tr>
|
|
<%-- <tr>
|
|
<td><label>활성화 여부</label></td>
|
|
<td style="font-size:13px;" class="admin_tr_data_border_bottom">${info.STATUS}</td>
|
|
</tr> --%>
|
|
</tbody>
|
|
</table>
|
|
<div id="adminPopupBtnWrap">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="btnCenterWrap">
|
|
<center class="center_btns_wrap">
|
|
<input type="button" value="Edit" class="btns" id="btnModify">
|
|
<!-- <input type="button" value="삭제" class="btns" id="btnDelete"> -->
|
|
<input type="button" value="닫기" name="" id="btn_close" class="btns" onclick="javascript:self.close();">
|
|
</center>
|
|
</div>
|
|
</section>
|
|
</body>
|
|
</html> |