使用Layui实现简单的列表查询

效果图如下:

在这里插入图片描述

前台代码:
页面定义表格
<table id="BWxuserTable" ></table>

<script>
    /**
     * 员工管理管理初始化参数
     */
    var BWxuser = {
        id: "BWxuserTable",	//表格id
        seItem: null,		//选中的条目
        table: null,
        layerIndex: -1,
        pageSize: 20,  //每页条数
        pageNumber: 1  //页码
    };
    /**
     * 加载模块,bootstrap_table_edit的模块需要自定义
     */
    layui.use(['layer','form','bootstrap_table_edit'], function () {
        var layer = layui.layer
            , table = layui.table
            , $ = layui.jquery
            , form = layui.form;

        /**
         * 初始化表格的列,定义列名和字段名
         */
        BWxuser.initColumn = function () {
            return [
                {checkbox: true, halign: 'center', align: "center", width: 50},
                {
                    title: '序号', align: "center", halign: 'center', width: 50, formatter: function (value, row, index) {
                        return (BWxuser.pageNumber - 1) * BWxuser.pageSize + 1 + index;
                    }
                },
                {title: '员工ID', field: 'struId', align: 'center', halign: 'center'},
                {title: '员工姓名', field: 'name', align: 'center', halign: 'center'},
                {title: '员工工号', field: 'workId', align: 'center', halign: 'center'}
            ];
        };

        /**
         * 获取后台列表数据
         */
        $(function () {
            var defaultColunms = BWxuser.initColumn();
            $('#BWxuserTable').bootstrapTable({
                dataType: "json",
                url: '/userListManagen/list',
                pagination: true,
                pageList: [10, 15, 20, 50, 100],
                striped: true,
                pageSize: 20,
                queryParams: queryParams,
                queryParamsType: '',
                columns: defaultColunms,
                height: $("body").height() - $(".layui-form").outerHeight(true) - 26,
                sidePagination: "server",
                onPageChange: function (number, size) {
                    BWxuser.pageNumber = number;
                    BWxuser.pageSize = size
                }
            });
        })

        /**
         * 查询条件以及分页参数
         */
        function queryParams(){
            var nameOrPhone=$("#condition").val();//查询条件
            var temp={
                pageSize:this.pageSize,
                pageNumber:this.pageNumber
            };
            return temp;
        }
            });
</script>
Layui的table组件提供了丰富的数据查询和显示功能,可以轻松实现数据的查询、排序、分页、筛选等操作。以下是一个简单的示例代码: HTML代码: ```html <div class="layui-form"> <table class="layui-table" lay-data="{url:'data.json', page:true, limit:10, id:'demo'}" lay-filter="demo"> <thead> <tr> <th lay-data="{field:'id', width:80, sort:true}">ID</th> <th lay-data="{field:'username', width:120}">用户名</th> <th lay-data="{field:'email', width:200}">邮箱</th> <th lay-data="{field:'sex', width:80, templet:'#sexTpl'}">性别</th> <th lay-data="{field:'city'}">城市</th> <th lay-data="{field:'sign'}">签名</th> <th lay-data="{field:'experience', sort:true}">积分</th> <th lay-data="{field:'logins', sort:true}">登入次数</th> <th lay-data="{field:'joinTime', sort:true}">加入时间</th> </tr> </thead> </table> </div> <script type="text/html" id="sexTpl"> {{# if(d.sex === 1){ }} 男 {{# } else if(d.sex === 2){ }} 女 {{# } else { }} 未知 {{# } }} </script> ``` JavaScript代码: ```javascript layui.use('table', function(){ var table = layui.table; table.render({ elem: '#demo', //绑定元素 url: 'data.json', //数据接口 page: true, //开启分页 limit: 10, //每页显示的条数 cols: [[ //表头 {field: 'id', title: 'ID', width: 80, sort: true}, {field: 'username', title: '用户名', width: 120}, {field: 'email', title: '邮箱', width: 200}, {field: 'sex', title: '性别', width: 80, templet: '#sexTpl'}, {field: 'city', title: '城市'}, {field: 'sign', title: '签名'}, {field: 'experience', title: '积分', sort: true}, {field: 'logins', title: '登入次数', sort: true}, {field: 'joinTime', title: '加入时间', sort: true} ]] }); }); ``` 在这个例子中,我们使用Layui的table组件,并指定了数据接口、分页、每页显示的条数和表头信息。我们还定义了一个模板函数,用于将性别字段的值转换为文字。最后,我们使用`table.render()`方法将表格渲染到页面上。 您需要将数据接口的URL替换为您自己的接口地址,并根据需要修改表头信息、模板函数和其他属性。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值