|
...
|
...
|
@@ -31,7 +31,11 @@ class InquiryLogic extends BaseLogic |
|
|
|
|
|
|
|
public function getApiList($export = false)
|
|
|
|
{
|
|
|
|
$page_size = $export ? $this->param['row'] ?:20 : 20;
|
|
|
|
if(isset($this->param['row'])){
|
|
|
|
$page_size = $this->param['row'];
|
|
|
|
}else{
|
|
|
|
$page_size = $export ? 1000 : 20;
|
|
|
|
}
|
|
|
|
$search = $this->request['search'] ?: '';
|
|
|
|
$page = $this->request['page'] ?: 1;
|
|
|
|
$project = (new ProjectLogic())->getProjectInfo($this->user['project_id']);
|
...
|
...
|
|