From f83275f47b0bf3de2c3daf17b34836f47c5ecec2 Mon Sep 17 00:00:00 2001 From: vilson <545522390@qq.com> Date: Mon, 26 Aug 2019 06:11:53 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=9F=A5=E8=AF=A2=E6=95=88?= =?UTF-8?q?=E7=8E=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: vilson <545522390@qq.com> --- application/project/controller/Project.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/project/controller/Project.php b/application/project/controller/Project.php index c7883ce..7c7e8b1 100644 --- a/application/project/controller/Project.php +++ b/application/project/controller/Project.php @@ -326,7 +326,8 @@ class Project extends BasicApi 'expireToday' => 0, 'doneOverdue' => 0, ]; - $taskList = \app\common\Model\Task::where(['project_code' => $projectCode, 'deleted' => 0])->select()->toArray(); +// $taskList = \app\common\Model\Task::where(['project_code' => $projectCode, 'deleted' => 0])->field('id,assign_to,done,end_time,create_time,code')->hidden(['childCount,hasUnDone,parentDone,hasComment,hasSource,canRead'])->select()->toArray(); + $taskList = Db::name('task')->where(['project_code' => $projectCode, 'deleted' => 0])->field('id,assign_to,done,end_time,create_time,code')->select(); $taskStats['total'] = count($taskList); if ($taskList) { $today = date('Y-m-d 00:00', time()); @@ -348,7 +349,6 @@ class Project extends BasicApi } } } - } }