tongshanglei 2 년 전
부모
커밋
402d798c81
3개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 1
      catch/permissions/controller/Job.php
  2. 1 1
      catch/permissions/controller/Permission.php
  3. 1 1
      catch/permissions/controller/Role.php

+ 1 - 1
catch/permissions/controller/Job.php

@@ -62,7 +62,7 @@ class Job extends CatchController
    */
   public function delete($id): \think\response\Json
   {
-    return CatchResponse::success($this->job->deleteBy($id));
+    return CatchResponse::success($this->job->deleteBy($id,true));
   }
 
 /**

+ 1 - 1
catch/permissions/controller/Permission.php

@@ -161,7 +161,7 @@ class Permission extends CatchController
 
         $this->permissions->findBy($id)->roles()->detach();
 
-        return CatchResponse::success($this->permissions->deleteBy($id));
+        return CatchResponse::success($this->permissions->deleteBy($id,true));
     }
 
     /**

+ 1 - 1
catch/permissions/controller/Role.php

@@ -169,7 +169,7 @@ class Role extends CatchController
         // 删除用户关联
         $role->users()->detach();
         // 删除
-        $this->role->deleteBy($id);
+        $this->role->deleteBy($id,true);
 
         return CatchResponse::success();
     }