Commit f9a2e2b6 by Takumi Imai

#49772 レポートフォームローディング閉じるの場所変更

parent 234d6d68
......@@ -16,7 +16,6 @@ RL.init = function () {
RL.checkQuickReport();
RL.loadCommon();
RL.initTaskReportList();
COMMON.closeLoading();
};
/**
......@@ -77,7 +76,9 @@ RL.initTaskReportList = function () {
params.operationId = sessionStorage.OL_operationId;
params.returnUrl = CONSTANT.URL.WEB.BASE + CONSTANT.URL.WEB.OPERATION_LIST;
let url = COMMON.format(ClientData.conf_checkApiUrl(), ClientData.userInfo_accountPath()) + CONSTANT.URL.CMS.HTML.BASE + CONSTANT.URL.CMS.HTML.TASK_REPORT_LIST;
$('#reportList').load(url, params);
$('#reportList').load(url, params, function () {
COMMON.closeLoading();
});
} else {
COMMON.displayAlert('error');
COMMON.avwScreenMove('index.html');
......
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