TP5 自定义分页URL(携带自定义参数)

32 阅读1分钟
 $data = $this->adminM->alias('a')
            ->field(['a.id', 'realname', 'mobile', 'student_num','s.name'])
            ->join('admin_group_access aga', 'aga.uid=a.id', 'left')
            ->join('school s','s.id=a.remove','left')
            ->where($where)
            ->paginate(PAGE_NUM,$simple = false, $config=[
                'query'=>['remove'=>$getData['remove']]
            ]);

然后url可以变成www.xxx.com/redcm/news/…