// 2021/2/22 •‘”‰ζ–Κ‘€μ–hŽ~‘Ξ‰ž Ž}Ό Add start // ƒg[ƒNƒ“ID var tokenId = null; //2021/2/22 •‘”‰ζ–Κ‘€μ–hŽ~‘Ξ‰ž Ž}Ό Add end function Pager() { // 2021/2/22 •‘”‰ζ–Κ‘€μ–hŽ~‘Ξ‰ž Ž}Ό Add start tokenId = null; // 2021/2/22 •‘”‰ζ–Κ‘€μ–hŽ~‘Ξ‰ž Ž}Ό Add end this.initialize.apply(this, arguments); } Pager.prototype = { initialize : function() { // Œ»έ‚Μƒy[ƒWID this.pageId = null; this.pageInfo = null; this.scrollTarget = null; this.dateObj = new Date(); this.htmlFile = ''; }, execApi : function(url, params, callback) { var self = this; params['HIDDEN_SESSION'] = ''; // 2021/2/22 •‘”‰ζ–Κ‘€μ–hŽ~‘Ξ‰ž Ž}Ό Add start params['TOKEN_ID'] = tokenId; // 2021/2/22 •‘”‰ζ–Κ‘€μ–hŽ~‘Ξ‰ž Ž}Ό Add end params['_'] = new Date().getTime(); params['spFlg'] = '1'; $.ajax({ cache : false, type : 'POST', url : Settings.webapi_path + url, dataType : 'json', data : params, traditional: true, timeout : Settings.timeout * 1000, success : function(response) { // 2021/2/22 •‘”‰ζ–Κ‘€μ–hŽ~‘Ξ‰ž Ž}Ό Add start // ƒg[ƒNƒ“IDƒZƒbƒg if (response.pageInfo.elm_buttonKBN != 'A'){ tokenId = response.pageInfo.checkSession; } // 2021/2/22 •‘”‰ζ–Κ‘€μ–hŽ~‘Ξ‰ž Ž}Ό Add end if (response.error) { commonError.execute(response.errorInfo, response.pageInfo.elm_errorKBN, response.pageInfo); self.pageId && self.scrollTo(); if ('C' == response.pageInfo.elm_errorKBN) { callback(response); return; } indicator.off(); return; } callback(response); }, error : commonError.connectError }); }, getHtml : function(filename, callback) { var self = this; $.ajax({ cache : true, type : 'GET', url : Settings.html_file_path + '/' + filename + '?20240219', timeout : Settings.timeout * 1000, contentType : "text/html; charset=utf-8", success : function(html) { self.htmlFile = filename; self.pageId && self.scrollTo(); $('#elmContainer').get(0).innerHTML = ''; location.hash = filename.replace(/(\_[0-9]+\.html|\.html)/, ''); $('#errorPage').hide(); $('#messages').hide(); $('#elmContainer').css('visibility', 'hidden'); $('#elmContainer').hide().html(html).ready(function() { callback(); $('#elmContainer').css('visibility', 'visible'); $('#elmContainer').show(); // Googleƒ^ƒOƒ}ƒl[ƒWƒƒ‚Ι‰ζ–Κ‘JˆΪ‚π’Κ’m $('body > script[id=gtmScript]').remove(); dataLayer.push({'event': 'ajaxPageChange'}); }); }, error : commonError.connectError, beforeSend: function(xhr){ xhr.overrideMimeType("text/html;charset=utf-8"); } }); }, scrollTo : function(target, speed) { setTimeout(function() { if (target) { $($.browser.safari ? 'body' : 'html').animate({ scrollTop : target.offset().top }, speed || 0, 'swing'); } else { $($.browser.safari ? 'body' : 'html').scrollTop(0); $('body').scrollTop(0);$('html').scrollTop(0); } }, 30); }, setScrollTarget: function(target) { this.scrollTarget = target || ''; }, getScrollTarget: function() { return this.scrollTarget; }, };