data($result); } /** * @notes 设置热门搜索 * @return \think\response\Json * @author 段誉 * @date 2022/9/5 19:00 */ public function setConfig() { $params = $this->request->post(); $result = HotSearchLogic::setConfig($params); if (false === $result) { return $this->fail(HotSearchLogic::getError() ?: '系统错误'); } return $this->success('设置成功', [], 1, 1); } }