作者 lyh

变更数据

@@ -77,10 +77,10 @@ class GeoQuestionResLogic extends BaseLogic @@ -77,10 +77,10 @@ class GeoQuestionResLogic extends BaseLogic
77 * @time :2025/7/4 10:19 77 * @time :2025/7/4 10:19
78 */ 78 */
79 public function getResultInfo(){ 79 public function getResultInfo(){
80 - if($this->param['model'] == 1){//查询记录表 80 + if(isset($this->param['model'])){//查询记录表
81 $this->model = new GeoQuestionLog(); 81 $this->model = new GeoQuestionLog();
  82 + unset($this->param['model']);
82 } 83 }
83 - unset($this->param['model']);  
84 $data = $this->model->read($this->param); 84 $data = $this->model->read($this->param);
85 return $this->success($data); 85 return $this->success($data);
86 } 86 }