ERP-node/WebContent/WEB-INF/view/massProductionTransfer/moldTransferStatusDetailLis...

72 lines
2.1 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);
});
//상태 상세 팝업
$(".status_btn").click(function(){
window.open("/massProductionTransfer/moldTransferStatusDetailPopUp.do", "", "width=333, height=250");
});
});
</script>
</head>
<body>
<form name="form1" action="" method="post">
<section class="min-width:333px;">
<div class="plm_menu_name">
<h2>
<span>금형 인수인계 현황</span>
</h2>
</div>
<section class="contents_page_basic_margin">
<div class="plm_table_wrap">
<div style="overflow-y:scroll; margin-top:15px;">
<table class="plm_table" style="width:100%;">
<colgroup>
<col width="25%"/>
<col width="75%"/>
</colgroup>
<thead>
<tr class="plm_thead">
<td>상태</td>
<td>comment</td>
</tr>
</thead>
</table>
</div>
<div class="plm_scroll_table" style="width:100%; height:250px;">
<table class="plm_table">
<colgroup>
<col width="25%"/>
<col width="75%"/>
</colgroup>
<tr>
<td>승인</td>
<td><a href="#" class="status_btn">상태 코멘트 내용</a></td>
</tr>
</table>
</div>
</div>
<div class="btn_wrap">
<div class="plm_btn_wrap_center">
<input type="button" value="저장" id="btnSave" class="plm_btns">
<input type="button" value="닫기" id="btnClose" class="plm_btns">
</div>
</div>
</section>
</section>
</form>
</body>
</html>