diff --git a/app/admin/controller/Queue.php b/app/admin/controller/Queue.php index 204ea1571..c4978f4c3 100644 --- a/app/admin/controller/Queue.php +++ b/app/admin/controller/Queue.php @@ -54,20 +54,32 @@ class Queue extends Controller $this->command = "sudo -u {$_SERVER['USER']} {$process->think('xadmin:queue start')}"; } } - // 任务状态统计 - $this->total = ['dos' => 0, 'pre' => 0, 'oks' => 0, 'ers' => 0]; - SystemQueue::mk()->field('status,count(1) count')->group('status')->select()->map(function ($item) { - if ($item['status'] === 1) $this->total['pre'] = $item['count']; - if ($item['status'] === 2) $this->total['dos'] = $item['count']; - if ($item['status'] === 3) $this->total['oks'] = $item['count']; - if ($item['status'] === 4) $this->total['ers'] = $item['count']; - }); }, function (QueryHelper $query) { $query->equal('status')->like('code,title,command'); $query->timeBetween('enter_time,exec_time')->dateBetween('create_at'); }); } + /** + * 分页数据回调处理 + * @param array $data + * @param array $result + * @return void + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + */ + protected function _index_page_filter(array $data, array &$result) + { + $result['extra'] = ['dos' => 0, 'pre' => 0, 'oks' => 0, 'ers' => 0]; + SystemQueue::mk()->field('status,count(1) count')->group('status')->select()->map(function ($item) use (&$result) { + if ($item['status'] === 1) $result['extra']['pre'] = $item['count']; + if ($item['status'] === 2) $result['extra']['dos'] = $item['count']; + if ($item['status'] === 3) $result['extra']['oks'] = $item['count']; + if ($item['status'] === 4) $result['extra']['ers'] = $item['count']; + }); + } + /** * 重启系统任务 * @auth true diff --git a/app/admin/view/queue/index.html b/app/admin/view/queue/index.html index 000d11a8b..597071b56 100644 --- a/app/admin/view/queue/index.html +++ b/app/admin/view/queue/index.html @@ -26,7 +26,7 @@ - 任务统计:待处理 {$total.pre|default=0} 个任务,处理中 {$total.dos|default=0} 个任务,已完成 {$total.oks|default=0} 个任务,已失败 {$total.ers|default=0} 个任务。 + 任务统计:待处理 {$total.pre|default=0} 个任务,处理中 {$total.dos|default=0} 个任务,已完成 {$total.oks|default=0} 个任务,已失败 {$total.ers|default=0} 个任务。
{include file='queue/index_search'} @@ -53,8 +53,13 @@