ERP-node/WebContent/WEB-INF/view/protoDevMng/attachedFilePopup.jsp

79 lines
2.2 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" %>
<%
System.out.println("/projectConcept/searchEmployeePopup.jsp");
%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title><%=Constants.SYSTEM_NAME%></title>
</head>
<script>
$(document).ready(function(){
$("#btn_close").click(function(){
if(confirm("작업을 취소하고 창을 닫으시겠습니까?")){
self.close(0);
}
});
});
</script>
<body>
<form name="form1" action="" method="post">
<section class="business_staff_popup_min_width">
<div class="plm_menu_name">
<h2>
<span>수주활동 등록</span>
</h2>
</div>
<div id="businessPopupFormWrap">
<div class="form_popup_title">&nbsp;&nbsp;&nbsp;수주활동 등록</div>
<div style="width:98%; margin: 0 auto;">
<div class="btn_wrap" style="height:38px;">
<div class="plm_btn_wrap">
<input type="button" value="다운로드" class="blue_btn">
</div>
</div>
<table class="project_form_in_table">
<colgroup>
<col width="5%"/>
<col width="95%"/>
</colgroup>
<thead>
<tr>
<td>
<input type="checkbox">
</td>
<td>파일명</td>
</tr>
</thead>
</table>
<div class="in_table_scroll_wrap" style="height:120px;">
<table class="plm_table">
<colgroup>
<col width="5%"/>
<col width="95%"/>
</colgroup>
<tbody>
<tr>
<td>
<input type="checkbox">
</td>
<td></td>
</tr>
</tbody>
</table>
</div>
<div class="btn_wrap">
<div class="plm_btn_wrap_center">
<input type="button" value="저장" class="plm_btns">
<input type="button" value="닫기" id="btn_close" class="plm_btns">
</div>
</div>
</div>
</section>
</form>
</body>
</html>