Home  >  Article  >  Backend Development  >  thinkphp5 paging style, tp5 paging style

thinkphp5 paging style, tp5 paging style

PHP中文网
PHP中文网Original
2017-09-01 16:41:005789browse

tihinkphp's built-in paging style sometimes cannot meet the requirements of the project. Here we mainly introduce the customization and beautification of the paging style to make it more concise and beautiful thinkphp5 controller writing method

   function index($keyword='', $page = 1){
        $map = [];
        if ($keyword) {
            $map['code'] = ['like', "%{$keyword}%"];
        }
        $list=Db('package')->where($map)->paginate(10, false, ['page' => $page]);
        return $this->fetch('index',['list'=>$list,'keyword'=>$keyword]);
    }

Template writing method

/*循环输出数据*/ 
  {foreach $list as $vo}
      id {$vo.id}
   {/foreach}
/*分页写法*/ 
  {$list->render()}

Pagination style

<style>
/*分页*/
.pagination {}
.pagination li {display: inline-block;margin-right: -1px;padding: 5px;border: 1px solid #e2e2e2;min-width: 20px;text-align: center;}
.pagination li.active {background: #009688;color: #fff;border: 1px solid #009688;}
.pagination li a {display: block;text-align: center;}
</style>


The above is the detailed content of thinkphp5 paging style, tp5 paging style. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn