likang 2 years ago
parent
commit
1c47b9b819
1 changed files with 2 additions and 1 deletions
  1. 2 1
      catch/tag_history/controller/TagHistory.php

+ 2 - 1
catch/tag_history/controller/TagHistory.php

@@ -9,6 +9,7 @@ use catcher\base\CatchController;
 use catchAdmin\tag_history\model\TagHistory as tagHistoryModel;
 use catcher\CatchAdmin;
 use catcher\Code;
+use Exception;
 use think\facade\Db;
 
 class TagHistory extends CatchController
@@ -88,7 +89,7 @@ class TagHistory extends CatchController
                 'data' => json_encode($tagList)
             ];
             $report = new Report();
-            $report->save($content);
+           
             return CatchResponse::success('生成报告成功');
         }