TonyKang 5 年 前
コミット
2cefa675c8
1 ファイル変更4 行追加4 行削除
  1. 4 4
      app/public/report/js/rpt_main.js

+ 4 - 4
app/public/report/js/rpt_main.js

@@ -313,10 +313,10 @@ let zTreeOprObj = {
     },
     requestNormalReport: function (params) {
         let me = zTreeOprObj;
-        // hintBox.waitBox();
+        $.bootstrapLoading.start();
         CommonAjax.postXsrfEx("/tender/report_api/getReport", params, 60000, true, getCookie('csrfToken'),
             function(result){
-                // hintBox.unWaitBox();
+                $.bootstrapLoading.end();
                 let pageRst = result.data;
                 STAGE_AUDIT = result.stageAudit;
                 STAGE_AUDIT_ORG = result.stageAuditOrg;
@@ -376,9 +376,9 @@ let zTreeOprObj = {
                 } catch(err) {
                 }
             }, function(err){
-                // hintBox.unWaitBox();
+                $.bootstrapLoading.end();
             }, function(ex){
-                // hintBox.unWaitBox();
+                $.bootstrapLoading.end();
             }
         );
     },