Merge branch 'master' of

http://tolag3@vcs.iten.co.kr:9999/itnAdmin/fairnet
This commit is contained in:
leejunho 2024-10-30 19:35:24 +09:00
parent 4afb11e033
commit 27bafceabf
2 changed files with 8 additions and 1 deletions

View File

@ -1455,6 +1455,13 @@ public class MainController {
) { ) {
menuUrl = "/web/user/news/case/01/341/newsList.do"; menuUrl = "/web/user/news/case/01/341/newsList.do";
} }
else if(
menuUrl.contains("/web/user/mediation/case/")
&& menuUrl.contains("mediationStep")
&& menuUrl.contains(".do")
) {
menuUrl = "/web/user/mediation/case/01/154/mediationApp.do";
}
// 상세화면 URL로 메뉴화면 매핑이 안되어, 문자열 치환으로 매핑... // 상세화면 URL로 메뉴화면 매핑이 안되어, 문자열 치환으로 매핑...

View File

@ -1627,7 +1627,7 @@
url: frmAction, url: frmAction,
type: 'POST', type: 'POST',
contentType: 'application/json', contentType: 'application/json',
data: JSON.stringify($("#applyForm")), data: JSON.stringify($("#applyForm").serializeArray()),
success: function(response) { success: function(response) {
if(response.sts == "success"){ if(response.sts == "success"){
document.applyForm.rceptNo.value = response.rceptNo; document.applyForm.rceptNo.value = response.rceptNo;