diff --git a/app/api/controller/TaskController.php b/app/api/controller/TaskController.php index 89bd492f9..95cd5b499 100644 --- a/app/api/controller/TaskController.php +++ b/app/api/controller/TaskController.php @@ -44,7 +44,6 @@ class TaskController extends BaseApiController if (isset($param['status']) && $param['status'] > 0) { $where[] = ['status', '=', $param['status']]; } - halt($where); $res = Task::where($where) ->field(['id', 'title', 'money', 'template_id', 'director_uid', 'company_id', 'start_time', 'end_time', 'director_uid', 'type', 'status', 'content', 'extend']) ->page($page, 25)