thinkphp8+layui分页

前端

html 复制代码
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>demo</title>
  <link href="//unpkg.com/layui@2.9.20/dist/css/layui.css" rel="stylesheet">
</head>
<body>
<table class="layui-table">
  <colgroup>
    <col width="150">
    <col width="150">
    <col>
  </colgroup>
  <thead>
  <tr>
    <th>ID</th>
    <th>realname</th>
    <th>gender</th>
  </tr>
  </thead>
  <tbody>
  {volist name="data" id="vo"}
  <tr>
    <td>{$vo.id}</td>
    <td>{$vo.realname}</td>
    <td>{$vo.sex}</td>
  </tr>
  {/volist}
  </tbody>
</table>
<div id="demo-laypage-all"></div>
<script src="//unpkg.com/layui@2.9.20/dist/layui.js"></script>
<script>
  layui.use(function(){
    const laypage = layui.laypage;
    // 完整显示
    laypage.render({
      elem: 'demo-laypage-all', // 元素 id
      theme: '#1E9FFF',
      count: 100, // 数据总数
      curr:{$page},
      layout: ['count', 'prev', 'page', 'next', 'limit', 'refresh', 'skip'], // 功能布局
      jump: function(obj, first){
        console.log(obj);
        if(!first){
          window.location.href='?page='+obj.curr;
        }
      }
    });
  });
</script>
</body>
</html>

后端:

php 复制代码
public function index()
    {
        $page = input('get.page/d'); // 当前页码
        $result = Db::name('user')->paginate([
            'list_rows'=> 10,
            'page' => $page
        ]);
        return view('/index',['data'=>$result,'page'=>$page]);
    }
相关推荐
陈奕迅本讯31 分钟前
HTML5和CSS3拔高
前端·css3·html5
画船听雨眠aa1 小时前
vue项目创建与运行(idea)
前端·javascript·vue.js
大码猴1 小时前
用好git的几个命令,领导都夸你干的好~
前端·后端·面试
℡52Hz★1 小时前
如何正确定位前后端bug?
前端·vue.js·vue·bug
学不完了是吧1 小时前
html、js、css实现爱心效果
前端·css·css3
小丁爱养花2 小时前
Spring MVC:设置响应
java·开发语言·前端
优联前端2 小时前
Web 音视频(二)在浏览器中解析视频
前端·javascript·音视频·优联前端·webav
涔溪2 小时前
2025年前端面试题汇总
前端
16年上任的CTO2 小时前
一文大白话讲清楚webpack基本使用——6——热更新及其原理
前端·webpack·node.js·热更新·hmr·热重载
摇光932 小时前
js高阶-响应式原理
前端·javascript·vue.js