作者 lyh

gx

@@ -31,7 +31,7 @@ class InquiryLogic extends BaseLogic @@ -31,7 +31,7 @@ class InquiryLogic extends BaseLogic
31 31
32 public function getApiList($export = false) 32 public function getApiList($export = false)
33 { 33 {
34 - $page_size = $this->param['row'] ?: 20; 34 + $page_size = $export ? $this->param['row'] ?:20 : 20;
35 $search = $this->request['search'] ?: ''; 35 $search = $this->request['search'] ?: '';
36 $page = $this->request['page'] ?: 1; 36 $page = $this->request['page'] ?: 1;
37 $project = (new ProjectLogic())->getProjectInfo($this->user['project_id']); 37 $project = (new ProjectLogic())->getProjectInfo($this->user['project_id']);