增加title,text回调函数调用;

This commit is contained in:
2023-09-07 09:33:54 +08:00
parent 01ecc4525e
commit 1b0ae546c3
3 changed files with 13 additions and 3 deletions

View File

@@ -212,7 +212,7 @@ class AdminController extends BaseController
*/
protected function buildTableParames($excludeFields = [])
{
$get = $this->request->get('', null, null);
$get = $this->request->get('', null, []);
$page = isset($get['page']) && !empty($get['page']) ? $get['page'] : 1;
$limit = isset($get['limit']) && !empty($get['limit']) ? $get['limit'] : 15;
$group = isset($get['group']) && !empty($get['group']) ? $get['group'] : null;