作者 lyh

GXgeo设置

... ... @@ -72,7 +72,7 @@ class GeoQuestionResController extends BaseController
'project_id.required' => 'project_id不能为空',
'type.required' => '品牌类型不能为空'
]);
$data = $this->logic->getResultList($this->map,$this->page,$this->row,$this->order);
$data = $this->logic->getResultList($this->map,$this->page,$this->row);
$this->response('success',Code::SUCCESS,$data);
}
... ...
... ... @@ -42,7 +42,7 @@ class GeoQuestionResLogic extends BaseLogic
* @method :post
* @time :2025/7/4 9:48
*/
public function getResultList($map = [],$page = 1,$row = 20,$order = 'id'){
public function getResultList($map = [],$page = 1,$row = 20){
$filed = ['id','project_id','question_id','platform','question','keywords','url','created_at','updated_at'];
$map['keywords'] = ['!=','[]'];
$map['url'] = ['!=','[]'];
... ...