springboot的layui数据表格的使用

本文详细介绍了如何在SpringBoot项目中使用Layui实现数据表格的功能。首先在HTML头部引入必要的依赖,包括layui和jQuery库。接着配置了Layui的分页配置。在Mapper层、Service层和服务实现层分别进行了相关操作的展示,最后在控制器层展示了两种不同的实现方式。
摘要由CSDN通过智能技术生成

HTML层

html的头部要添加上<html lang="en" xmlns:th="http://www.thymeleaf.org">

<link rel="stylesheet" href="/layui/css/layui.css">
 <table id="changshang" lay-filter="changshang" style="width: 100%"></table>
 <script src="/layui/layui.all.js" type="text/javascript"></script>
**<script th:inline="none" type="text/javascript">**
  var changshang;
  var layer;
  var layuiTable, table;

  $(function () {
   
    layui.use(['layer', 'table'], function () {
   
      layer = layui.layer;
      layuiTable = layui.table;//
      changshang = layuiTable.render({
   
        elem: '#changshang',//html table id
        url: "/changshangchaxun",//数据接口
        cols: [[ //表头
          {
   type: 'radio', fixed: 'left', title: '选择', align: 'center', width: 10, hide: true},//单选框列,fixed:'left' 将列固定在左边
          {
   type: 'numbers', title: '序号', align: 'center', width: 100},//序号列,title设定标题名称
           {
   field: 'comanyid', title: 'comanyid', sort: false, fixed: 'left', hide: true}
          , {
   field: 'codingcs', title: '编码', width: 140, align: 'center'}
          , {
   field: 'comanyname', title: '厂商名称', align: 'center', sort: true}
          , {
   field: 'production', title: '生产标记', align: 'center'}
          , {
   field: 'dealerbiaoshi', title: '经销商标记', align: 'center'}
          , {
   field: 'settlementmarkers', title: '结算方式', align: 'center'}
          
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值