59 lines
1.7 KiB
Plaintext
59 lines
1.7 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">
|
|
<title><%=Constants.SYSTEM_NAME%></title>
|
|
<script>
|
|
|
|
$(document).ready(function(){
|
|
$("#btnClose").click(function(){
|
|
self.close(0);
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<form name="form1" action="" method="post">
|
|
<!--333x265-->
|
|
<section class="min-width:333px;">
|
|
<div class="plm_menu_name">
|
|
<h2>
|
|
<span>금형 인수인계 현황</span>
|
|
</h2>
|
|
</div>
|
|
<div id="businessPopupFormWrap">
|
|
<div class="form_popup_title"> 상태 상세내용</div>
|
|
<table class="pmsPopupForm">
|
|
<colgroup>
|
|
<col width="25%"/>
|
|
<col width="75%"/>
|
|
</colgroup>
|
|
<tr>
|
|
<td class="input_title">
|
|
<label for="">상태</label>
|
|
</td>
|
|
<td class="tr_data_border_bottom">승인</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="input_title">
|
|
<label for="">comment</label>
|
|
</td>
|
|
<td>
|
|
<textarea name="" id="" rows="5" style="width:97%; border: 1px solid #cdcdcd; font-size:11px;" readonly>상태 코멘트 내용</textarea>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<div class="btn_wrap">
|
|
<div class="plm_btn_wrap_center">
|
|
<input type="button" value="닫기" id="btnClose" class="plm_btns">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</form>
|
|
</body>
|
|
</html> |