Pager.prototype.goKSS0030 = function(params) { var self = this; indicator.on(); self.execApi('/MSAD_SKS_UII_KSS0030.json', params, function(response) { var pageInfo = response.pageInfo; self.getHtml('KSS0030.html', function() { viewNumber.on("S030"); printerNo.on(pageInfo.elm_printerNo); footer.on(2, pageInfo.elm_dairitenName); $('#goKSS0010Back').click(function() { indicator.on(); if ('goKSS0020Back' == pageInfo.backWhere) { self.goKSS0020(self.getKSS0020BackParams()); } else if ('goKSS0010Back' == pageInfo.backWhere) { self.goKSS0010(self.getKSS0010BackFrom030Params()); } return false; }); $('#goKSS0040').click(function() { indicator.on(); self.goKSS0040(self.getKSS0040RequestParams()); return false; }); $("input[type='radio']").change(function(){ radioCssChange($(this).attr('name')); }); $("input[name=elm_HIHO_KYK_SAME_FLG]").change(function (){ $('#elm_mongon_kojin').hide(); if ("1" == pageInfo.elm_CONTRACTOR_FLG) { $('#elm_mongon_houjinn').hide(); if ($('#elm_HIHO_KYK_SAME_FLG_0').is(":checked")) { $('#elm_mongon_kojin').show(); } } }); $('#elm_OK_CHK').change(function() { if ($(this).prop('checked')) { $('.check_confirm_btn').addClass('check_confirm_btn_checked'); $('#goKSS0040').attr('href','#goKSS0040'); } else { $('.check_confirm_btn').removeClass('check_confirm_btn_checked'); $('#goKSS0040').removeAttr('href'); } }); $(window).resize(function(){ var windowWidth = parseInt($(window).width()); // 火災のpcとspの切替は657pxとなっている replaceWidth = 657; if(windowWidth >= replaceWidth) { $('div').removeClass('jusetsu_captchaarea_sp'); $('#jusetsu_captchaarea').addClass('jusetsu_captchaarea_pc'); }else{ $('div').removeClass('jusetsu_captchaarea_pc'); $('#jusetsu_captchaarea').addClass('jusetsu_captchaarea_sp'); } }); self.setKSS0030DefaultParams(pageInfo); indicator.off(); }); }); }; Pager.prototype.goKSS0031 = function(params) { var self = this; indicator.on(); self.execApi('/MSAD_SKS_UII_KSS0030.json', params, function(response) { var pageInfo = response.pageInfo; self.getHtml('KSS0030.html', function() { viewNumber.on("S030"); printerNo.on(pageInfo.elm_printerNo); footer.on(2, pageInfo.elm_dairitenName); $('#goKSS0010Back').click(function() { indicator.on(); self.goKSS0021(self.getKSS0020BackParams()); return false; }); $('#goKSS0040').click(function() { indicator.on(); self.goKSS0041(self.getKSS0040RequestParams()); return false; }); $("input[type='radio']").change(function(){ radioCssChange($(this).attr('name')); }); $("input[name=elm_HIHO_KYK_SAME_FLG]").change(function (){ $('#elm_mongon_kojin').hide(); if ("1" == pageInfo.elm_CONTRACTOR_FLG) { $('#elm_mongon_houjinn').hide(); if ($('#elm_HIHO_KYK_SAME_FLG_0').is(":checked")) { $('#elm_mongon_kojin').show(); } } }); $('#elm_OK_CHK').change(function() { if ($(this).prop('checked')) { $('.check_confirm_btn').addClass('check_confirm_btn_checked'); $('#goKSS0040').attr('href','#goKSS0040'); } else { $('.check_confirm_btn').removeClass('check_confirm_btn_checked'); $('#goKSS0040').removeAttr('href'); } }); $(window).resize(function(){ var windowWidth = parseInt($(window).width()); replaceWidth = 657; // 火災のpcとspの切替は657pxとなっている if(windowWidth >= replaceWidth) { $('div').removeClass('jusetsu_captchaarea_sp'); $('#jusetsu_captchaarea').addClass('jusetsu_captchaarea_pc'); }else{ $('div').removeClass('jusetsu_captchaarea_pc'); $('#jusetsu_captchaarea').addClass('jusetsu_captchaarea_sp'); } }); self.setKSS0030DefaultParams(pageInfo); indicator.off(); }); }); }; Pager.prototype.setKSS0030DefaultParams = function(pageInfo) { // 重要事項説明PDF var pdfLink = "./html/RejectServlet.html"; if ("E99" != pageInfo.strPDFDownLoadLink) { pdfLink = pageInfo.strPDFDownLoadLink; } $('#explain_btn').attr('href', pdfLink); $('#elm_KYK_KANJI_NAME').text(pageInfo.elm_KYK_KANJI_NAME); $("input[name='elm_HIHO_KYK_SAME_FLG']").val([pageInfo.elm_HIHO_KYK_SAME_FLG]); if ("1" == pageInfo.elm_CONTRACTOR_FLG) { $('[id^=elm_KYK_KANJI_NAME]').show(); } else { $('[id^=elm_KYK_KANJI_NAME]').hide(); } $("input[type='radio']").change(); $('#elm_OK_CHK').val([pageInfo.elm_OK_CHK]); $('#elm_OK_CHK').change(); // 重説事項の必須画像 var windowWidth = parseInt($(window).width()); replaceWidth = 657; if(windowWidth >= replaceWidth) { $('#jusetsu_captchaarea').addClass('jusetsu_captchaarea_pc'); }else{ $('#jusetsu_captchaarea').addClass('jusetsu_captchaarea_sp'); } this.pageId = 'KSS0030'; }; Pager.prototype.getKSS0040RequestParams = function() { return { "MODE" : "KSS0040_DISPLAY", "elm_KYK_KANJI_NAME" : trim($('#elm_KYK_KANJI_NAME').val()), "elm_HIHO_KYK_SAME_FLG" : trim($("input[name='elm_HIHO_KYK_SAME_FLG']:checked").val()), "elm_OK_CHK" : trim($('input[id=elm_OK_CHK]:checked').val()) }; }; Pager.prototype.getKSS0010BackFrom030Params = function() { return { "MODE" : "KSS0010_BACK_FROM030" }; }; Pager.prototype.getKSS0020BackParams = function() { return { "MODE" : "KSS0020_BACK_DISPLAY" }; };