data($result); } /** * @notes 通用设置 * @return \think\response\Json * @author cjhao * @date 2024/8/27 16:32 */ public function getGeneralSetting() { $result = SystemLogic::getGeneralSetting(); return $this->data($result); } /** * @notes 通用设置 * @return \think\response\Json * @author cjhao * @date 2024/8/27 16:32 */ public function setGeneralSetting() { $params = $this->request->post(); SystemLogic::setGeneralSetting($params); return $this->success('设置成功',[],1,1); } }