최초커밋
This commit is contained in:
78
WebContent/WEB-INF/view/admin/auth/authGroupDetailPopUp.jsp
Normal file
78
WebContent/WEB-INF/view/admin/auth/authGroupDetailPopUp.jsp
Normal file
@@ -0,0 +1,78 @@
|
||||
<%@ 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>
|
||||
$(document).ready(function(){
|
||||
//save
|
||||
$("#btnEdit").click(function(){
|
||||
fn_edit();
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
//검사명 저장
|
||||
function fn_edit(){
|
||||
if(confirm("수정하시겠습니까?")){
|
||||
var form = document.form1;
|
||||
|
||||
form.action = "/admin/authGroupFormPopUp.do";
|
||||
form.submit();
|
||||
}
|
||||
}
|
||||
|
||||
</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" name="OBJID" id="OBJID" value="${groupInfo.OBJID}">
|
||||
<input type="hidden" name="authGroupObjid" id="authGroupObjid" value="${groupInfo.OBJID}">
|
||||
<table id="adminPopupForm">
|
||||
<colgroup>
|
||||
<col width="37%" />
|
||||
<col width="63%" />
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><label>권한명</label></td>
|
||||
<td><input type="text" title="권한명" name="AUTH_NAME" id="AUTH_NAME" value="${groupInfo.AUTH_NAME}" maxlength="10" required disabled></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label>권한CODE</label></td>
|
||||
<td><input type="text" title="권한CODE" name="AUTH_CODE" id="AUTH_CODE" value="${groupInfo.AUTH_CODE}" maxlength="20" required disabled></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="">상태</label></td>
|
||||
<td>
|
||||
<select name="STATUS" id="STATUS" disabled>
|
||||
<option value="">선택</option>
|
||||
<option value="active" ${groupInfo.STATUS eq 'active' ? 'selected' : ''}>활성화</option>
|
||||
<option value="inActive" ${groupInfo.STATUS eq 'inActive' ? 'selected' : ''}>비활성화</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
<div class="btnCenterWrap">
|
||||
<center class="center_btns_wrap">
|
||||
<input type="button" value="수정" class="btns" id="btnEdit">
|
||||
<input type="button" value="닫기" name="" id="btn_close" class="btns" onclick="javascript:self.close();">
|
||||
</center>
|
||||
</div>
|
||||
</secsion>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user