溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

利用vue + element實(shí)現(xiàn)表格分頁(yè)和前端搜索的方法

發(fā)布時(shí)間:2020-09-06 23:52:50 來源:腳本之家 閱讀:1008 作者:火狼 欄目:web開發(fā)

前言

ElementUI是餓了么前端開源的一個(gè)基于Vue的前端框架,已經(jīng)幫我們封裝好了一系列功能性的組件,比如柵格系統(tǒng)、表格、表單、樹形菜單、通知等。對(duì)于搞后臺(tái)管理界面的項(xiàng)目,特別是不需要考慮兼容ie8、ie9以下的項(xiàng)目、ElementUI是一個(gè)不錯(cuò)的選擇。

而且ElementUI的文檔寫得十分詳盡,參照demo可以很快上手。

本文主要介紹了關(guān)于vue + element實(shí)現(xiàn)表格分頁(yè)和前端搜索的相關(guān)內(nèi)容,分享出來供大家參考學(xué)習(xí),下面話不多說了,來一起看看詳細(xì)的介紹吧。

實(shí)現(xiàn)思路

1.前端后臺(tái)管理會(huì)存在很多表格,表格數(shù)據(jù)過多就需要分頁(yè);

2.前端交互每次搜索如果都請(qǐng)求服務(wù)器會(huì)加大服務(wù)器的壓力,所以在數(shù)據(jù)量不是很大的情況下可以一次性將數(shù)據(jù)返回,前端做檢索

3.下面貼上一個(gè)demo

示例代碼

<template>
<div>
 <el-input v-model="tableDataName" placeholder="請(qǐng)輸入姓名" ></el-input>
 <el-button type="primary" @click="doFilter">搜索</el-button>
 <el-button type="primary" @click="openData">展示數(shù)據(jù)</el-button>
 <el-table
 :data="tableDataEnd"
 border
 >
 <el-table-column
  prop="date"
  label="日期"
  width="180">
 </el-table-column>
 <el-table-column
  prop="name"
  label="姓名"
  width="180">
 </el-table-column>
 <el-table-column
  prop="address"
  label="地址">
 </el-table-column>
 </el-table>
 <el-pagination
  @size-change="handleSizeChange"
  @current-change="handleCurrentChange"
  :current-page="currentPage"
  :page-sizes="[1, 2, 3, 4]"
  :page-size="pageSize"
  layout="total, sizes, prev, pager, next, jumper"
  :total="totalItems">
 </el-pagination>
</div>
</template>
<script>
export default {
 data() {
 return {
  tableDataBegin: [
  {
   date: "2016-05-01",
   name: "王小虎",
   address: "上海市普陀區(qū)金沙江路 1518 弄"
  },
  {
   date: "2016-05-02",
   name: "王小虎",
   address: "上海市普陀區(qū)金沙江路 1517 弄"
  },
  {
   date: "2016-05-03",
   name: "王二虎",
   address: "上海市普陀區(qū)金沙江路 1519 弄"
  },
  {
   date: "2016-05-04",
   name: "王二虎",
   address: "上海市普陀區(qū)金沙江路 1516 弄"
  },
  {
   date: "2016-05-05",
   name: "王三虎",
   address: "上海市普陀區(qū)金沙江路 1518 弄"
  },
  {
   date: "2016-05-06",
   name: "王三虎",
   address: "上海市普陀區(qū)金沙江路 1517 弄"
  },
  {
   date: "2016-05-07",
   name: "王小虎",
   address: "上海市普陀區(qū)金沙江路 1519 弄"
  },
  {
   date: "2016-05-08",
   name: "王小虎",
   address: "上海市普陀區(qū)金沙江路 1516 弄"
  }
  ],
  tableDataName: "",
  tableDataEnd: [],
  currentPage: 4,
  pageSize: 2,
  totalItems: 0,
  filterTableDataEnd:[],
  flag:false
 };
 },
 created() {
 this.totalItems = this.tableDataBegin.length;
 if (this.totalItems > this.pageSize) {
  for (let index = 0; index < this.pageSize; index++) {
  this.tableDataEnd.push(this.tableDataBegin[index]);
  }
 } else {
  this.tableDataEnd = this.tableDataBegin;
 }
 },
 methods: {
 //前端搜索功能需要區(qū)分是否檢索,因?yàn)閷?duì)應(yīng)的字段的索引不同
 //用兩個(gè)變量接收currentChangePage函數(shù)的參數(shù)
 doFilter() {
  if (this.tableDataName == "") {
  this.$message.warning("查詢條件不能為空!");
  return;
  }
  this.tableDataEnd = []
  //每次手動(dòng)將數(shù)據(jù)置空,因?yàn)闀?huì)出現(xiàn)多次點(diǎn)擊搜索情況
  this.filterTableDataEnd=[]
  this.tableDataBegin.forEach((value, index) => {
  if(value.name){
   if(value.name.indexOf(this.tableDataName)>=0){
   this.filterTableDataEnd.push(value)
   }
  }
  });
  //頁(yè)面數(shù)據(jù)改變重新統(tǒng)計(jì)數(shù)據(jù)數(shù)量和當(dāng)前頁(yè)
  this.currentPage=1
  this.totalItems=this.filterTableDataEnd.length
  //渲染表格,根據(jù)值
  this.currentChangePage(this.filterTableDataEnd)
  //頁(yè)面初始化數(shù)據(jù)需要判斷是否檢索過
  this.flag=true
 },
 openData() {},
 handleSizeChange(val) {
  console.log(`每頁(yè) ${val} 條`);
  this.pageSize = val;
  this.handleCurrentChange(this.currentPage);
 },
 handleCurrentChange(val) {
  console.log(`當(dāng)前頁(yè): ${val}`);
  this.currentPage = val;
  //需要判斷是否檢索
  if(!this.flag){
  this.currentChangePage(this.tableDataEnd)
  }else{
  this.currentChangePage(this.filterTableDataEnd)  
  }
 }, //組件自帶監(jiān)控當(dāng)前頁(yè)碼
 currentChangePage(list) {
  let from = (this.currentPage - 1) * this.pageSize;
  let to = this.currentPage * this.pageSize;
  this.tableDataEnd = [];
  for (; from < to; from++) {
  if (list[from]) {
   this.tableDataEnd.push(list[from]);
  }
  }
 }
 }
};
</script>

總結(jié)

以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,如果有疑問大家可以留言交流,謝謝大家對(duì)億速云的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI