|
|
|
@ -459,26 +459,7 @@ mappingButtonAndMenu("btnGoToSchdl","일정관리");
|
|
|
|
|
|
|
|
|
|
/*--------------------- 사용자 메뉴얼 클릭 이벤트 ---------------------*/
|
|
|
|
|
$("#btnDownloadMenual--top").on( "click", function() {
|
|
|
|
|
|
|
|
|
|
ajax.get({
|
|
|
|
|
url : wctx.url("/file/downloadMenual.do"),
|
|
|
|
|
data : { },
|
|
|
|
|
xhrFields:{ responseType: 'blob' },
|
|
|
|
|
success : (resp) => {
|
|
|
|
|
var fileName = "메뉴얼.pptx";
|
|
|
|
|
|
|
|
|
|
var URL = window.URL || window.webkitURL;
|
|
|
|
|
var downloadUrl = URL.createObjectURL(resp);
|
|
|
|
|
|
|
|
|
|
var a = document.createElement("a");
|
|
|
|
|
a.href = downloadUrl;
|
|
|
|
|
a.download = fileName;
|
|
|
|
|
document.body.appendChild(a);
|
|
|
|
|
a.click();
|
|
|
|
|
document.body.removeChild(a);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
fnMenualDownload();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
/*--------------------- 보안모드 체크박스 클릭 이벤트 ---------------------*/
|
|
|
|
|