From e67191d610d0eb7fc0ac18b345cb9c5b0ae12cf7 Mon Sep 17 00:00:00 2001 From: Anyon Date: Thu, 3 Mar 2022 13:12:15 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BB=BB=E5=8A=A1=E5=8A=A0?= =?UTF-8?q?=E8=BD=BD=E6=9C=BA=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 任务统计改为异步处理。 1. 修改 layui.table 数据 filter。 2. 修改 ThinkLibrary 分页增加回调参数。 3. 修改 任务模块 模板及控制器,改为callback --- app/admin/controller/Queue.php | 28 ++++++++++++++++++++-------- app/admin/view/queue/index.html | 11 ++++++++--- public/static/admin.js | 2 +- 3 files changed, 29 insertions(+), 12 deletions(-) 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 @@