tongshanglei 2 years ago
parent
commit
402d798c81

+ 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();
     }