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