欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

layui實現數據表格table分頁功能(ajax異步)

 更新時間:2021年09月10日 15:38:36   作者:小黑小黑白  
這篇文章主要為大家詳細介紹了layui實現數據表格table分頁功能、異步加載,表格渲染,含條件查詢,具有一定的參考價值,感興趣的小伙伴們可以參考一下

layui實現數據表格table分頁功能,異步加載,表格渲染,含條件查詢。

一、引入layUI的相關資源

<link rel="stylesheet" href="${ctxPath}/vendor/layui/css/layui.css" >
<script src="${ctxPath}/vender/layui/layui.js" charset="utf-8"></script>

二、html頁面代碼

搜索表單:

<div class="layui-row">
 <form class="layui-form layui-col-md12 we-search">
 項目搜索:
 <div class="layui-inline">
 <input type="text" name="projectName" id="projectName" placeholder="項目名稱" autocomplete="off" class="layui-input">
 </div>
 <div class="layui-input-inline">
 <select name="businessOperatorId" id="businessOperatorId" lay-verify="" lay-search>
 <option value="">業(yè)務員</option>
 </select>
 </div>
 <div class="layui-input-inline">
 <select name="mftRepresentativeId" id="mftRepresentativeId" lay-verify="" lay-search>
 <option value="">廠家代表</option>
 </select>
 </div>
 <div class="layui-input-inline">
 <select name="channelId" id="channelId" lay-search>
 <option value="">渠道</option>
 </select>
 </div>
 <div class="layui-input-inline">
  <select name="customerId" id="customerId" lay-search>
  <option value="">客戶</option>
  </select>
 </div>
 <div class="layui-input-inline">
  <select name="projectPhase" id="projectPhase" lay-search>
  <option value="">項目階段</option>
  </select>
 </div>
 <div class="layui-input-inline">
  <select name="goodsCondition" id="goodsCondition" lay-search>
  <option value="">貨物情況</option>
  </select>
 </div>
 <div class="layui-input-inline">
  <select name="implementCondition" id="implementCondition" lay-search>
  <option value="">實施情況</option>
  </select>
 </div>
 <div class="layui-input-inline">
  <select name="payCondition" id="payCondition" lay-search>
  <option value="">收款情況</option>
  </select>
 </div>

 <div class="layui-inline">
 <input class="layui-input" placeholder="開項時間" name="startTime" id="startTime">
 </div>
 <div class="layui-inline">
 <input class="layui-input" placeholder="結項時間" name="endTime" id="endTime">
 </div>
 <button class="layui-btn" lay-submit="" lay-filter="sreach"><i class="layui-icon">&#xe615;</i></button>
 </form>
</div>

數據表格:

<table class="layui-hide" id="projectList" lay-filter="projectList"></table>

三、后臺接收分頁參數以及查詢條件,獲取并返回數據

主要注意下:

page: 前臺分頁插件傳入的當前頁數,
limit: 前臺分頁插件傳入的每頁個數,
projectInfo :接收前臺傳入的查詢條件的實體
jsonResult :后臺返回的相關數據的響應實體

@ResponseBody
 @RequestMapping("/project/list")
 public JsonResult list(@RequestParam("page") Integer page, @RequestParam("limit") Integer size, ProjectInfoEntity projectInfo){

 JsonResult jsonResult = projectService.getProjectList(page,size,projectInfo);
 return jsonResult;
 }

后臺響應類必須包含code與count字段,因為前臺layui會自動獲取

自定義后臺數據響應實體 JsonResult:

package com.bhy702.jfkj.common.util;

/**
 * JSON結果響應
 *
 */
@Data
public class JsonResult {

 private static final String SUCCESS = "成功";
 private static final String ERROR = "失敗";
 
 /**
 * 響應狀態(tài)code,因為前臺layui默認0為響應成功,所以此處默認為0
 */
 private Integer code = 0;

 /**
 * 數據總條數
 */
 private Long count = 0L;

 /**
 * 返回是否成功
 */
 private Boolean result = false;
 
 /**
 * 返回提示信息
 */
 private String msg = "";

 /**
 * 返回數據信息
 */
 private Object data;

 private JsonResult() {
 }

 /**
 * 成功的響應
 * 
 * @return
 */
 public static JsonResult success() {
 return result(true, SUCCESS, null,null);
 }

 public static JsonResult success(String msg) {
 return result(true, msg, null,null);
 }

 public static JsonResult success(Object data) {
 return result(true, SUCCESS, data,null);
 }
 public static JsonResult success(Object data,Long count) {
 return result(true, SUCCESS, data,count);
 }


 public static JsonResult success(String msg, Object data) {
 return result(true, msg, data,null);
 }

 public static JsonResult success(String msg, Object data,Long count) {
 return result(true, msg, data,count);
 }

 /**
 * 失敗的響應
 * 
 * @return
 */
 public static JsonResult error() {
 return result(false, ERROR, null,null);
 }

 public static JsonResult error(String msg) {
 return result(false, msg, null,null);
 }

 public static JsonResult error(Object data) {
 return result(false, ERROR, data,null);
 }

 public static JsonResult error(Object data,Long count) {
 return result(false, ERROR, data,count);
 }

 public static JsonResult error(String msg, Object data) {
 return result(false, msg, data,null);
 }

 public static JsonResult error(String msg, Object data,Long count) {
 return result(false, msg, data,count);
 }

 public static JsonResult result(Boolean result, String msg, Object data,Long count) {
 JsonResult jsonResult = new JsonResult();
 jsonResult.setResult(result);
 jsonResult.setMsg(msg);
 jsonResult.setData(data);
 jsonResult.setCount(count);
 return jsonResult;
 }
}

四、渲染table表格數據

主要注意下:

elem: ‘#projectList': projectList為表格id,
page: true: 設置表格分頁,
url: ‘/project/list' :數據請求url
fixed: true:固定列
done : function(res, curr, count){…}:數據加載成功后的回調函數

var tableIns = table.render({
 elem: '#projectList',
 cellMinWidth: 150,
 url: '/project/list',
 cols: [
 [{
 // type: 'checkbox',fixed: 'left'
  checkbox: true, fixed: true
 }, {
 field: 'id',title: 'ID',align:'center',width:50,fixed: true
 }, {
 field: 'name',title: '項目名稱',align:'center',fixed: true
 }, {
 field: 'businessOperatorStr',title: '經辦人',align:'center',fixed: true
 }, {
 field: 'mftRepresentativeStr',title: '廠家代表',align:'center',fixed: true
 }, {
 field: 'channelStr',title: '渠道',align:'center',fixed: true
 }, {
 field: 'customerStr',title: '客戶',align:'center',fixed: true
 }, {
  field: 'projectPhaseStr',title: '項目階段',align:'center',fixed: true
 }, {
 field: 'amount',title: '金額',align:'center'
 }, {
 field: 'businessSource',title: '商機來源',align:'center'
 }, {
 field: 'mainProduct',title: '主要產品',align:'center'
 }, {
 field: 'productLineStr',title: '產品線',align:'center'
 }, {
 field: 'goodsConditionStr',title: '貨物情況',align:'center'
 }, {
 field: 'implementConditionStr',title: '實施情況',align:'center'
 }, {
  field: 'payAmount',title: '已付金額',align:'center'
  }, {
 field: 'payConditionStr',title: '收款情況',align:'center'
 }, {
 field: 'startTime',title: '開項時間',align:'center'
  }, {
 field: 'endTime',title: '結項時間',align:'center'
  }, {
 field: 'remark',title: '備注',align:'center'
 }, {
 field: 'operate',title: '操作',toolbar: '#operateTpl',fixed: 'right',unresize: true
 }]
 ],
 id: 'testReload',
 // skin: 'row', //表格風格
 even: true, //隔行背景
 event: true,
 page: true,
 done : function(res, curr, count){
  $('#totalProjectNumber').text("共有數據:"+count+" 條");
  table_data=res.data;
  layer.closeAll('loading');
  // layer.close(layer.index); //它獲取的始終是最新彈出的某個層,值是由layer內部動態(tài)遞增計算的
  // layer.close(index); //返回數據關閉loading
 }
 });

五、監(jiān)聽搜索表單的提交事件,并重新渲染table表格數據

主要注意下:

sreach: 為搜索按鈕的lay-filter=“sreach”,
where 中的數據對應搜索表單,為搜索的條件,后臺使用這些條件進行篩選數據返回

form.on('submit(sreach)', function(data){

 layer.load();
 tableIns.reload({
 url:"/project/list",
 page: {
  curr: 1 //重新從第 1 頁開始
  },
 where:{
 name:data.field.projectName,
  businessOperatorId:data.field.businessOperatorId,
 mftRepresentativeId:data.field.mftRepresentativeId,
 channelId:data.field.channelId,
  customerId:data.field.customerId,
  projectPhase:data.field.projectPhase,
  goodsCondition:data.field.goodsCondition,
  implementCondition:data.field.implementCondition,
  payCondition:data.field.payCondition,
  startTime:data.field.startTime,
  endTime:data.field.endTime
 }
 });

 return false; //阻止表單跳轉。如果需要表單跳轉,去掉這段即可。
 });

六、效果展示

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

相關文章

  • BootStrapValidator校驗方式

    BootStrapValidator校驗方式

    做輸入校驗的時候如果你前端框架用的是bootstrap的話,首推bootstrapValidator校驗方式,下面通過本文給大家分享下校驗流程,一起看看吧
    2016-12-12
  • 原JS實現banner圖的常用功能

    原JS實現banner圖的常用功能

    這篇文章主要為大家詳細介紹了原JS實現banner圖的常用功能,,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-06-06
  • HTTP?HEAD請求的使用場合實例詳解

    HTTP?HEAD請求的使用場合實例詳解

    這篇文章主要為大家介紹了HTTP?HEAD請求的使用場合實例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
    2023-12-12
  • 淺談js中幾種實用的跨域方法原理詳解

    淺談js中幾種實用的跨域方法原理詳解

    本篇文章主要介紹了js中幾種實用的跨域方法原理詳解 ,小編覺得挺不錯的,現在分享給大家,也給大家做個參考。
    2016-12-12
  • 寫的htc的數據表格

    寫的htc的數據表格

    寫的htc的數據表格...
    2007-01-01
  • JS數組方法push()、pop()用法實例分析

    JS數組方法push()、pop()用法實例分析

    這篇文章主要介紹了JS數組方法push()、pop()用法,結合實例形式分析了JavaScript數組push()與pop()方法基本功能、原理、使用方法與操作注意事項,需要的朋友可以參考下
    2020-01-01
  • JavaScript刪除字符串中指定字符的4種方法匯總

    JavaScript刪除字符串中指定字符的4種方法匯總

    在前端面試中,經常會問到這樣的一個問題,刪除字符串中指定字符,下面這篇文章主要給大家介紹了關于JavaScript刪除字符串中指定字符的4種方法,文中通過實例代碼介紹的非常詳細,需要的朋友可以參考下
    2022-12-12
  • highlight.js 代碼高亮插件的使用詳解

    highlight.js 代碼高亮插件的使用詳解

    在網頁使用過程中,經常會用到代碼的展示。代碼高亮可以直觀的了解代碼,本文主要介紹了highlight.js 代碼高亮插件的使用詳解,具有一定的參考價值,感興趣的可以了解一下
    2022-01-01
  • 淺析JS運動

    淺析JS運動

    這篇文章主要介紹了JS運動的實現原理,介紹了JS多種運動方式,希望大家仔細學習,感興趣的小伙伴們可以參考一下
    2015-12-12
  • js判斷鼠標左、中、右鍵哪個被點擊的方法

    js判斷鼠標左、中、右鍵哪個被點擊的方法

    這篇文章主要介紹了js判斷鼠標左、中、右鍵哪個被點擊的方法,主要通過event.button事件來判斷鼠標點擊的類型,需要的朋友可以參考下
    2015-01-01

最新評論