diff --git a/app/admin/controller/Queue.php b/app/admin/controller/Queue.php index a7152eed1..0880271b2 100644 --- a/app/admin/controller/Queue.php +++ b/app/admin/controller/Queue.php @@ -112,4 +112,46 @@ class Queue extends Controller { SystemQueue::mDelete(); } + + + /** + * 设置重复任务的下次执行时间 + * @auth true + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + */ + public function exec() + { + if ($this->request->isGet()) { + SystemQueue::mForm('', 'code'); + } else { + try { + $data = $this->_vali([ + 'code.require' => '任务编号不能为空!', + 'exec_time.require' => '执行时间不能为空', + ]); + + // 任务编号 + $map = ['code' => $data['code']]; + $info = SystemQueue::mk()->where($map)->find(); + if (empty($info)) $this->error('任务不存在'); + + // 订单状态检查 + if ($info['status'] <> 1) $this->error('任务当前状态不可重置下次执行时间'); + + // 更新任务下次执行时间 + $this->app->db->transaction(function () use ($map, $data) { + SystemQueue::mk()->where($map)->update([ + 'exec_time' => strtotime($data['exec_time']) + ]); + }); + $this->success('任务重置成功!'); + } catch (HttpResponseException $exception) { + throw $exception; + } catch (Exception $exception) { + $this->error($exception->getMessage()); + } + } + } } diff --git a/app/admin/view/queue/exec.html b/app/admin/view/queue/exec.html new file mode 100644 index 000000000..3c30f0e9d --- /dev/null +++ b/app/admin/view/queue/exec.html @@ -0,0 +1,24 @@ +
+ +
+ +
+ +
+ +

仅重复任务可设置下次执行时间

+

启动重复任务时可设置延时时间

+

再手动修改下次(第一次的)时间即可

+
+
+ +
+ +
+ {notempty name='vo.code'}{/notempty} + +
+ + +
+
\ No newline at end of file diff --git a/app/admin/view/queue/index.html b/app/admin/view/queue/index.html index cf1b5d516..ec5d4c03a 100644 --- a/app/admin/view/queue/index.html +++ b/app/admin/view/queue/index.html @@ -104,7 +104,7 @@ {{# if(d.status===4||d.status===3){ }} 重 置 {{# }else{ }} - 重 置 + 重 置 {{# } }}