dataLists(new ConfigFilesLists()); } /** * @notes 添加 * @return \think\response\Json * @author likeadmin * @date 2024/03/14 17:45 */ public function add() { $params = (new ConfigFilesValidate())->post()->goCheck('add'); $result = ConfigFilesLogic::add($params); if (true === $result) { return $this->success('添加成功', [], 1, 1); } return $this->fail(ConfigFilesLogic::getError()); } /** * @notes 编辑 * @return \think\response\Json * @author likeadmin * @date 2024/03/14 17:45 */ public function edit() { $params = (new ConfigFilesValidate())->post()->goCheck('edit'); $result = ConfigFilesLogic::edit($params); if (true === $result) { return $this->success('编辑成功', [], 1, 1); } return $this->fail(ConfigFilesLogic::getError()); } /** * @notes 删除 * @return \think\response\Json * @author likeadmin * @date 2024/03/14 17:45 */ public function delete() { $params = (new ConfigFilesValidate())->post()->goCheck('delete'); ConfigFilesLogic::delete($params); return $this->success('删除成功', [], 1, 1); } /** * @notes 获取详情 * @return \think\response\Json * @author likeadmin * @date 2024/03/14 17:45 */ public function detail() { $params = (new ConfigFilesValidate())->goCheck('detail'); $result = ConfigFilesLogic::detail($params); return $this->data($result); } public function refresh() { $cids = $this->request->get('cids', ''); if (!$cids) { return $this->fail('请选择要刷新的区服'); } $config = config('cache.stores.redis'); $client = new Client($config); foreach ($cids as $cid) { $key = 'refreshConfig_' . $cid; $client->set($key, 1); } return $this->success('插入排队成功,等待刷新', [], 1, 1); } }