GetConfigInfo($config_arrs); } public function GetConfigInfo2(){ $config_arrs = request('config_arrs'); $q=DB::table('configs')->select(['label','value'])->whereIn('label',$config_arrs)->get(); return \Yz::JsonReturn(true,"查询完成",['list'=>$q]); } public function SaveConfig(){ $info = request('info'); $configs = new ConfigService(); return $configs->SaveConfig($info); } }