dataLists(); } /** * @notes 添加定时任务 * @return \think\response\Json * @author Tab * @date 2021/8/17 11:44 */ public function add() { $params = (new CrontabValidate())->post()->goCheck('add'); $result = CrontabLogic::add($params); if($result) { return $this->success('添加成功', [], 1, 1); } return $this->fail(CrontabLogic::getError()); } /** * @notes 查看定时任务详情 * @return \think\response\Json * @author Tab * @date 2021/8/17 11:54 */ public function detail() { $params = (new CrontabValidate())->goCheck('detail'); $result = CrontabLogic::detail($params); return $this->data($result); } /** * @notes 编辑定时任务 * @return \think\response\Json * @author Tab * @date 2021/8/17 12:00 */ public function edit() { $params = (new CrontabValidate())->post()->goCheck('edit'); $result = CrontabLogic::edit($params); if($result) { return $this->success('编辑成功', [], 1, 1); } return $this->fail(CrontabLogic::getError()); } /** * @notes 删除定时任务 * @return \think\response\Json * @author Tab * @date 2021/8/17 14:09 */ public function delete() { $params = (new CrontabValidate())->post()->goCheck('delete'); $result = CrontabLogic::delete($params); if($result) { return $this->success('删除成功', [], 1, 1); } return $this->fail('删除失败'); } /** * @notes 操作定时任务 * @return \think\response\Json * @author Tab * @date 2021/8/17 15:06 */ public function operate() { $params = (new CrontabValidate())->post()->goCheck('operate'); $result = CrontabLogic::operate($params); if($result) { return $this->success('操作成功', [], 1, 1); } return $this->fail(CrontabLogic::getError()); } /** * @notes 获取规则执行时间 * @return \think\response\Json * @author Tab * @date 2021/8/17 15:31 */ public function expression() { $params = (new CrontabValidate())->goCheck('expression'); $result = CrontabLogic::expression($params); return $this->data($result); } }