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