From 98ff3a39d703c84b4adb38dbcaaa6debc1b2e5af Mon Sep 17 00:00:00 2001 From: liu <1873441552@qq.com> Date: Fri, 10 May 2024 10:18:02 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E9=9C=80=E6=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/project/controller/Api.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/project/controller/Api.php b/app/project/controller/Api.php index 9853392..51a55ed 100644 --- a/app/project/controller/Api.php +++ b/app/project/controller/Api.php @@ -554,7 +554,9 @@ class Api extends BaseController //获取树形任务列表 public function get_project_task(){ $param = get_params(); - $list = Db::name('ProjectTask')->withoutField('content,md_content')->where('project_id',$param['project_id'])->order('id desc')->select()->toArray(); + $list = Db::name('ProjectTask')->withoutField('content,md_content')->where('project_id',$param['project_id']) + ->where('delete_time', '=', 0) + ->order('id desc')->select()->toArray(); foreach ($list as $key => &$vo) { $vo['director_name'] = '-'; if ($vo['director_uid'] > 0) {