|
|
@@ -14,40 +14,50 @@
|
|
|
* 1.0 2020.10.22 eskim 최초 작성
|
|
|
*******************************************************************************
|
|
|
-->
|
|
|
- <ul class="popup modal" data-width="600">
|
|
|
- <li class="mdPopTitle">
|
|
|
- <strong>엑셀업로드</strong>
|
|
|
- <button type="button" class="close" onclick="uifnPopClose('popupExcelUpload')"><i class="fa fa-times"></i></button>
|
|
|
- </li>
|
|
|
- <li class="mdPopContent">
|
|
|
- <form id="excelPopupForm" name="excelPopupForm" action="">
|
|
|
- <input type="hidden" name="procJob" id="procJob" th:value="${params.procJob}"/>
|
|
|
- <input type="hidden" name="callBackFun" id="callBackFun" th:value="${params.callBackFun}"/>
|
|
|
- <table class="frmStyle">
|
|
|
- <colgroup>
|
|
|
- <col style="width:20%;"/>
|
|
|
- <col/>
|
|
|
- <col style="width:20%;"/>
|
|
|
- </colgroup>
|
|
|
- <tbody>
|
|
|
- <tr>
|
|
|
- <th>파일</th>
|
|
|
- <td><div class="uFile w300">
|
|
|
- <input id="excelFile" name="excelFile" type="file" class="uFileInput"/>
|
|
|
- <label for="excelFile" class="uFileLabel">파일선택</label>
|
|
|
- <input type="hidden" name="OrgFileNm"/>
|
|
|
- <input type="hidden" name="NewFileNm"/>
|
|
|
- </div>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- </tbody>
|
|
|
- </table>
|
|
|
- <div class="tabBtnArea aR">
|
|
|
- <button type="button" class="btn btn-success btn-lg" id="btnExcelUploadSave">저장</button>
|
|
|
+ <div class="modalPopup" data-width="600">
|
|
|
+ <div class="panelStyle">
|
|
|
+ <!-- TITLE -->
|
|
|
+ <div class="panelTitle">
|
|
|
+ <strong>엑셀업로드</strong>
|
|
|
+ <button type="button" class="close" onclick="uiPopupClose('popupExcelUpload')"><i class="fa fa-times"></i></button>
|
|
|
</div>
|
|
|
- </form>
|
|
|
- </li>
|
|
|
- </ul>
|
|
|
+ <!-- //TITLE -->
|
|
|
+ <!-- CONTENT -->
|
|
|
+ <div class="panelContent">
|
|
|
+ <form id="excelPopupForm" name="excelPopupForm" action="">
|
|
|
+ <input type="hidden" name="procJob" id="procJob" th:value="${params.procJob}"/>
|
|
|
+ <input type="hidden" name="callBackFun" id="callBackFun" th:value="${params.callBackFun}"/>
|
|
|
+ <table class="frmStyle">
|
|
|
+ <colgroup>
|
|
|
+ <col style="width:20%;"/>
|
|
|
+ <col/>
|
|
|
+ <col style="width:20%;"/>
|
|
|
+ </colgroup>
|
|
|
+ <tbody>
|
|
|
+ <tr>
|
|
|
+ <th>파일</th>
|
|
|
+ <td><div class="uFile w300">
|
|
|
+ <input id="excelFile" name="excelFile" type="file" class="uFileInput"/>
|
|
|
+ <label for="excelFile" class="uFileLabel">파일선택</label>
|
|
|
+ <input type="hidden" name="OrgFileNm"/>
|
|
|
+ <input type="hidden" name="NewFileNm"/>
|
|
|
+ </div>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ <!-- 버튼 배치 영역 -->
|
|
|
+ <ul class="panelBar">
|
|
|
+ <li class="right">
|
|
|
+ <button type="button" class="btn btn-success btn-lg" id="btnExcelUploadSave">저장</button>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ <!-- //버튼 배치 영역 -->
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!-- //CONTENT -->
|
|
|
+ </div>
|
|
|
<script th:inline="javascript">
|
|
|
/*<![CDATA[*/
|
|
|
|
|
|
@@ -93,7 +103,7 @@
|
|
|
else eval( callback(jsonData) );
|
|
|
}
|
|
|
}
|
|
|
- uifnPopClose('popupExcelUpload');
|
|
|
+ uiPopupClose('popupExcelUpload');
|
|
|
}
|
|
|
});
|
|
|
|