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]);
    }
相关推荐
桃园码工6 分钟前
5_HTML5 SVG (1) --[HTML5 API 学习之旅]
前端·html5·svg
kk爱闹16 分钟前
弹窗组件嵌套弹窗组件问题
前端·javascript·vue.js
这可不简单16 分钟前
vue2 和 vue3 :关于keep-alive 使用的不同
前端·vue.js·vue
Benson叔16 分钟前
Vue3动态表单实现
前端·javascript·vue.js
雪芽蓝域zzs24 分钟前
Vue Web开发(十)
前端·javascript·vue.js
__十七32 分钟前
使用html2canvas库对可滚动的dom节点导出全量的图片
前端·javascript·vue.js·elementui
Cachel wood33 分钟前
Vue.js前端框架教程6:Element UI框架
前端·vue.js·git·elasticsearch·ui·前端框架
街尾杂货店&38 分钟前
css三角形源码
前端·css
小码快撩40 分钟前
VUE的缓存问题
前端·vue.js·缓存
小彭努力中1 小时前
32.在 Vue 3 中上传 KML 文件并在地图上显示
前端·javascript·vue.js·深度学习·openlayers