From fec6c56d279286845ba79d0a188a44ebaf57ee3d Mon Sep 17 00:00:00 2001 From: vilson <545522390@qq.com> Date: Thu, 20 Jun 2019 20:28:48 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=A0=87=E7=AD=BE=E4=BB=BB?= =?UTF-8?q?=E5=8A=A1=E5=88=97=E8=A1=A8?= 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/Task.php | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/application/project/controller/Task.php b/application/project/controller/Task.php index 4e73167..f918b4d 100644 --- a/application/project/controller/Task.php +++ b/application/project/controller/Task.php @@ -2,6 +2,7 @@ namespace app\project\controller; +use app\common\Model\CommonModel; use app\common\Model\Member; use app\common\Model\ProjectLog; use app\common\Model\TaskTag; @@ -104,6 +105,26 @@ class Task extends BasicApi $this->success('', $list); } + public function getListByTaskTag() + { + $taskTagCode = Request::param('taskTagCode'); + $page = Request::param('page', 1); + $pageSize = Request::param('pageSize', cookie('pageSize')); + $prefix = config('database.prefix'); + $sql = "select *,t.id as id,t.code as code from {$prefix}task_to_tag as tt join {$prefix}task as t on tt.task_code = t.code where tt.tag_code = '{$taskTagCode}' order by t.id desc"; + $list = CommonModel::limitByQuery($sql, $page, $pageSize); + if ($list['list']) { + foreach ($list['list'] as &$task) { + $task['tags'] = TaskToTag::where(['task_code' => $task['code']])->field('id', true)->order('id asc')->select()->toArray(); + $task['executor'] = null; + if ($task['assign_to']) { + $task['executor'] = Member::where(['code' => $task['assign_to']])->field('name,code,avatar')->find(); + } + } + } + $this->success('', $list); + } + public function read(Request $request) { //todo 隐私模式阅读权限