첨부파일 경로 오류 등 수정

main
이범준 3 months ago
parent 21906f778b
commit 3959070177

@ -278,6 +278,10 @@
$P.ctrl.save(params);
}
, init: () => {
AppSupport.setDialogZindex();
}
});
}

@ -241,7 +241,7 @@
// 첨부파일 다운로드 아이콘 클릭 이벤트
$P.fnFileDownload = (fileID) => {
top.location.href = "/file/download.do?fileID=" + fileID;
top.location.href = wctx.url("/file/download.do?fileID=") + fileID;
}
/**************************************************************************

@ -323,6 +323,10 @@
$P.ctrl.save(params);
}
, init: () => {
AppSupport.setDialogZindex();
}
});
}

@ -339,12 +339,15 @@
$(obj).closest("tr").remove(); // table 에서 제거
}
, init: () => {
AppSupport.setDialogZindex();
}
});
}
// 첨부파일 다운로드 아이콘 클릭 이벤트
$P.fnFileDownload = (fileID) => {
top.location.href = "/file/download.do?fileID=" + fileID;
top.location.href = wctx.url("/file/download.do?fileID=") + fileID;
}
/**************************************************************************

@ -253,7 +253,7 @@
// 첨부파일 다운로드 아이콘 클릭 이벤트
$P.fnFileDownload = (fileID) => {
top.location.href = "/file/download.do?fileID=" + fileID;
top.location.href = wctx.url("/file/download.do?fileID=") + fileID;
}
/**************************************************************************

@ -66,6 +66,10 @@ function newRent02020Control(pageName, doctx="[data-doctx='rent02020']") {
//
if (query) ctrl.query = query;
if(ctrl.query.crdnId == null || ctrl.query.crdnId == ""){
ctrl.query.crdnId = ctrl.getCurrent().CRDN_ID;
}
ajax.get({
url: ctrl.urls.load
, headers: { Accept: "application/json; charset=utf-8" } // json

Loading…
Cancel
Save