data($result); } /** * @notes 设置 * @return \think\response\Json * @author ljj * @date 2024/8/27 下午5:181 */ public function setConfig() { $params = $this->request->post(); $result = KefuConfigLogic::setConfig($params); if (true !== $result) { return $this->fail($result); } return $this->success('设置成功', [], 1, 1); } }