修改 thinkphp5 分页样式

前言

现在的项目的分页样式太丑了,一直也放着也没有去管,最近实在是看不下去了,打算好好看看这块,找了很多,也都比较模糊,于是根据 官方手册 打算搞一搞

需求

弄得好看点,特别是将显示数量的加入到分页中。


解决

先上做完的样式
修改 thinkphp5 分页样式修改 thinkphp5 分页样式

看了手册后知道样式的配置是在 application 下的 config 中的 paginate 中配置,一路找到了 demo\thinkphp\library\think\paginator\driver\Bootstrap.php 这个文件,大体看了一下它的方法,如下:
修改 thinkphp5 分页样式
发现 render 是这个类的出口,里面判断了简介分页或者正常,然后跟着一堆方法,解决办法就在这。
修改 thinkphp5 分页样式

修改 thinkphp5 分页样式

config 配置一下
修改 thinkphp5 分页样式