cmd = 'php ' . env('root_path') . 'think xtask:start'; $this->message = Console::call('xtask:state')->fetch(); } catch (\Exception $exception) { $this->message = $exception->getMessage(); } $this->title = '系统任务管理'; $query = $this->_query($this->table)->dateBetween('create_at,end_at'); $query->like('title,preload')->equal('status')->order('id desc')->page(); } /** * 删除系统任务 * @auth true * @throws \think\Exception * @throws \think\exception\PDOException */ public function remove() { $this->_delete($this->table); } }