修改说明;修改基础代码;

This commit is contained in:
2023-09-18 17:22:30 +08:00
parent 996f7014ee
commit c7426e4094
11 changed files with 277 additions and 120 deletions

View File

@@ -246,7 +246,8 @@ class AdminController extends BaseController
*/
protected function buildTableParames($excludeFields = [])
{
$get = $this->request->get('', 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;

View File

@@ -5,5 +5,5 @@ namespace app\common\provider;
// 应用请求对象类
class Request extends \think\Request
{
protected $filter = ['ua_htmlspecialchars'];
protected $filter = [];
}