Commit 953d3ece by Kang Donghun

ローディング表示修正

parent 2fd810a4
......@@ -36,7 +36,7 @@
</head>
<body>
<div id="loader"></div>
<div id="loader" style="display: none;"></div>
<!-- header -->
<div id="includedHeader"></div>
<div id="includedMainTitle"></div>
......
......@@ -22,7 +22,7 @@ RF.init = function () {
RF.loadCommon = function () {
TEMPLATE.loadHeader('#includedHeader');
TEMPLATE.loadConfirmModal('#includedConfirmModal');
RF.initBreadcrumb();
};
/**
......@@ -79,7 +79,8 @@ RF.initBreadcrumb = function () {
}
} else {
if (sessionStorage.getItem("pickUpType")) sessionStorage.removeItem("pickUpType");
if (addReportFlg == "1") {
console.log("kdh check addReportFlg = " + addReportFlg);
if (addReportFlg == 1) {
navs = [
{
titleLang: CONSTANT.PAGE_NAME.OPERATION_LIST,
......@@ -135,6 +136,7 @@ RF.initFormView = function () {
const url = COMMON.format(ClientData.conf_checkApiUrl(), ClientData.userInfo_accountPath()) + CONSTANT.URL.CMS.HTML.BASE + CONSTANT.URL.CMS.HTML.LIST_REPORT_FORM;
$('#report-form').load(url, params, function () {
initPageLoad();
RF.initBreadcrumb();
COMMON.closeLoading();
});
} else {
......
......@@ -11,6 +11,7 @@ var RL = {};
*/
RL.init = function () {
//Check if user is logged in
COMMON.showLoading();
COMMON.checkAuth(false);
console.log('ReportList init start');
RL.checkQuickReport();
......
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