Commit 2fd810a4 by Kang Donghun

fixed to get addReportFlg

parent 6b6540e2
...@@ -34,8 +34,8 @@ COMMON.loginCheckPageList = [CONSTANT.PAGE_NAME.DEFAULT, CONSTANT.PAGE_NAME.DASH ...@@ -34,8 +34,8 @@ COMMON.loginCheckPageList = [CONSTANT.PAGE_NAME.DEFAULT, CONSTANT.PAGE_NAME.DASH
COMMON.hasErrorKey = 'AVW_HASERR'; COMMON.hasErrorKey = 'AVW_HASERR';
$(document).ready(function() { $(document).ready(function() {
const checkUrl = location.href.substring(location.href.lastIndexOf('/') + 1 ,location.href.lastIndexOf(".html"));
if (location.href.includes(COMMON.loginCheckPageList)) { if (COMMON.loginCheckPageList.includes(checkUrl)) {
if (!COMMON.checkLogin(CONSTANT.PAGE_NAME.LOGIN)){ if (!COMMON.checkLogin(CONSTANT.PAGE_NAME.LOGIN)){
return; return;
} }
...@@ -1110,6 +1110,7 @@ COMMON.checkLogin = function (option) { ...@@ -1110,6 +1110,7 @@ COMMON.checkLogin = function (option) {
'position': 'fixed', 'position': 'fixed',
'top': '0', 'top': '0',
'left': '0', 'left': '0',
'background': "#ffffff",
'width': $(window).width(), 'width': $(window).width(),
'height': $(window).height(), 'height': $(window).height(),
'zIndex': '10000' 'zIndex': '10000'
......
...@@ -79,8 +79,6 @@ RF.initBreadcrumb = function () { ...@@ -79,8 +79,6 @@ RF.initBreadcrumb = function () {
} }
} else { } else {
if (sessionStorage.getItem("pickUpType")) sessionStorage.removeItem("pickUpType"); if (sessionStorage.getItem("pickUpType")) sessionStorage.removeItem("pickUpType");
const urlParam = COMMON.getUrlParameter();
let addReportFlg = urlParam["addReport"];
if (addReportFlg == "1") { if (addReportFlg == "1") {
navs = [ navs = [
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment