Răsfoiți Sursa

up - 导出最大条数 5w

liugc 9 luni în urmă
părinte
comite
8fb652f1be
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      app/common/lists/BaseDataLists.php

+ 1 - 1
app/common/lists/BaseDataLists.php

@@ -251,8 +251,8 @@ abstract class BaseDataLists implements ListsInterface
 
     public function excelExportList($params = []): array
     {
-        $this->limitLength = config('export.max_limit_length');
         $this->setParams($params?:[])->initSearch();
+        $this->limitLength = config('export.max_limit_length');
         return $this->lists();
     }