溫馨提示×

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

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

Vue2.5 結(jié)合Element UI之Table和Pagination組件實(shí)現(xiàn)分頁功能的示例分析

發(fā)布時(shí)間:2021-07-22 13:42:37 來源:億速云 閱讀:190 作者:小新 欄目:web開發(fā)

這篇文章主要介紹Vue2.5 結(jié)合Element UI之Table和Pagination組件實(shí)現(xiàn)分頁功能的示例分析,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

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

Element UI 引入(整體引入)

main.js

// Element UI
import Element from 'element-ui'
// 默認(rèn)樣式
import 'element-ui/lib/theme-chalk/index.css'

開始封裝 iTable.vue 組件 (骨架)

由于公司項(xiàng)目都是以 i 開頭,所以,為了區(qū)分組件和頁面,習(xí)慣于組件命名也以 i 開頭。 首先把 Table 、 Pagination 組件加進(jìn)來

<template>
 <div class="table">
  <!--region 表格-->
  <el-table id="iTable"></el-table>
  <!--endregion-->
  <!--region 分頁-->
  <el-pagination></el-pagination>
  <!--endregion-->
 </div>
<template>

養(yǎng)成寫注釋的好習(xí)慣,個(gè)人項(xiàng)目的注釋量基本上不會(huì)低于 30%

在頁面中引用 iTable 組件,并且給 iTable 組件傳值

<template>
 <div class="table-page">
 <i-table :list="list" 
    :total="total" 
    :otherHeight="otherHeight"
    @handleSizeChange="handleSizeChange"
    @handleIndexChange="handleIndexChange" @handleSelectionChange="handleSelectionChange"
    :options="options"
    :columns="columns"
    :operates="operates"
    @handleFilter="handleFilter"
    @handelAction="handelAction">
 </i-table>
 </div>
</template>
<script>
 import iTable from '../../components/Table/Index'
 export default {
  components: {iTable},
  data () {
   return {
    total: 0, // table數(shù)據(jù)總條數(shù)
    list: [], // table數(shù)據(jù)
    otherHeight: 208, // 除了table表格之外的高度,為了做table表格的高度自適應(yīng)
    page: 1, // 當(dāng)前頁碼
    limit: 20, // 每頁數(shù)量
    options: {
     stripe: true, // 是否為斑馬紋 table
     loading: false, // 是否添加表格loading加載動(dòng)畫
     highlightCurrentRow: true, // 是否支持當(dāng)前行高亮顯示
     mutiSelect: true, // 是否支持列表項(xiàng)選中功能
     filter: false, // 是否支持?jǐn)?shù)據(jù)過濾功能
     action: false // 是否支持 表格操作功能
    }, // table 的參數(shù)
    columns: [
     {
      prop: 'id',
      label: '編號(hào)',
      align: 'center',
      width: 60
     },
     {
      prop: 'title',
      label: '標(biāo)題',
      align: 'center',
      width: 400,
      formatter: (row, column, cellValue) => {
       return `<span >${row.title}</span>`
      }
     },
     {
      prop: 'state',
      label: '狀態(tài)',
      align: 'center',
      width: '160',
      render: (h, params) => {
       return h('el-tag', {
       props: {type: params.row.state === 0 ? 'success' : params.row.state === 1 ? 'info' : 'danger'} // 組件的props
       }, params.row.state === 0 ? '上架' : params.row.state === 1 ? '下架' : '審核中')
      }
     },
     ……
    ], // 需要展示的列
    operates: {
     width: 200,
     fixed: 'right',
     list: [
      {
       label: '編輯',
       type: 'warning',
       show: true,
       icon: 'el-icon-edit',
       plain: true,
       disabled: true,
       method: (index, row) => {
        this.handleEdit(index, row)
       }
      },
      {
       label: '刪除',
       type: 'danger',
       icon: 'el-icon-delete',
       show: true,
       plain: false,
       disabled: false,
       method: (index, row) => {
        this.handleDel(index, row)
       }
      }
     ]
    } // 列操作按鈕
   }
  },
  methods: {
    // 切換每頁顯示的數(shù)量
   handleSizeChange (size) {
    this.limit = size
    console.log(' this.limit:', this.limit)
   },
   // 切換頁碼
   handleIndexChange (index) {
    this.page = index
    console.log(' this.page:', this.page)
   },
   // 選中行
   handleSelectionChange (val) {
    console.log('val:', val)
   },
   // 編輯
   handleEdit (index, row) {
    console.log(' index:', index)
    console.log(' row:', row)
   },
   // 刪除
   handleDel (index, row) {
    console.log(' index:', index)
    console.log(' row:', row)
   }
  }
 }
</script>

除了 columns 參數(shù)和 operates 參數(shù) 之外,其它的參數(shù)應(yīng)該還好理解,好的。那我們就詳細(xì)的解釋下這兩個(gè)參數(shù),那么我們就需要結(jié)合組件iTable.vue 來講解了,接下來就給 iTable.vue 添加肌肉和血管,代碼都貼了。 比較難理解的就是columns里面的 render 參數(shù),使用了Vue的虛擬標(biāo)簽,為了就是能夠在 table 表格的列中隨心所欲的使用各種html標(biāo)簽 和 element UI 的其他組件。( 你也可以直接寫,看看 table 組件是否能識(shí)別,呵呵噠! )這個(gè)估計(jì)對(duì)于剛?cè)腴T的小伙伴是一個(gè)比較難理解的地方,詳細(xì)的大家可以先看下vue 的render,解釋的更清楚,如果有的小伙伴不理解,可以直接私信我~~~

<!--region 封裝的分頁 table-->
<template>
 <div class="table">
 <el-table id="iTable" v-loading.iTable="options.loading" :data="list" :max-height="height" :stripe="options.stripe"
    ref="mutipleTable"
    @selection-change="handleSelectionChange">
  <!--region 選擇框-->
  <el-table-column v-if="options.mutiSelect" type="selection" >
  </el-table-column>
  <!--endregion-->
  <!--region 數(shù)據(jù)列-->
  <template v-for="(column, index) in columns">
  <el-table-column :prop="column.prop"
       :label="column.label"
       :align="column.align"
       :width="column.width">
   <template slot-scope="scope">
   <template v-if="!column.render">
    <template v-if="column.formatter">
    <span v-html="column.formatter(scope.row, column)"></span>
    </template>
    <template v-else>
    <span>{{scope.row[column.prop]}}</span>
    </template>
   </template>
   <template v-else>
    <expand-dom :column="column" :row="scope.row" :render="column.render" :index="index"></expand-dom>
   </template>
   </template>
  </el-table-column>
  </template>
  <!--endregion-->
  <!--region 按鈕操作組-->
  <el-table-column ref="fixedColumn" label="操作" align="center" :width="operates.width" :fixed="operates.fixed"
      v-if="operates.list.filter(_x=>_x.show === true).length > 0">
  <template slot-scope="scope">
   <div class="operate-group">
   <template v-for="(btn, key) in operates.list">
    <div class="item" v-if="btn.show">
    <el-button :type="btn.type" size="mini" :icon="btn.icon" :disabled="btn.disabled"
       :plain="btn.plain" @click.native.prevent="btn.method(key,scope.row)">{{ btn.label }}
    </el-button>
    </div>
   </template>
   </div>
  </template>
  </el-table-column>
  <!--endregion-->
 </el-table>
 <div ></div>
 <!--region 分頁-->
 <el-pagination @size-change="handleSizeChange"
     @current-change="handleIndexChange"
     :page-size="pageSize"
     :page-sizes="[10, 20, 50]" :current-page="pageIndex" layout="total,sizes, prev, pager, next,jumper"
     :total="total"></el-pagination>
 <!--endregion-->
 <!--region 數(shù)據(jù)篩選-->
 <div class="filter-data fix-right" v-show="options.filter" @click="showfilterDataDialog">
  <span>篩選過濾</span>
 </div>
 <!--endregion-->
 <!--region 表格操作-->
 <div class="table-action fix-right" v-show="options.action" @click="showActionTableDialog">
  <span>表格操作</span>
 </div>
 <!--endregion-->
 </div>
</template>
<!--endregion-->
<script>
 export default {
 props: {
  list: {
  type: Array,
  default: []
  }, // 數(shù)據(jù)列表
  columns: {
  type: Array,
  default: []
  }, // 需要展示的列 === prop:列數(shù)據(jù)對(duì)應(yīng)的屬性,label:列名,align:對(duì)齊方式,width:列寬
  operates: {
  type: Array,
  default: []
  }, // 操作按鈕組 === label: 文本,type :類型(primary / success / warning / danger / info / text),show:是否顯示,icon:按鈕圖標(biāo),plain:是否樸素按鈕,disabled:是否禁用,method:回調(diào)方法
  total: {
  type: Number,
  default: 0
  }, // 總數(shù)
  pageSize: {
  type: Number,
  default: 20
  }, // 每頁顯示的數(shù)量
  otherHeight: {
  type: Number,
  default: 160
  }, // 用來計(jì)算表格的高度
  options: {
  type: Object,
  default: {
   stripe: false, // 是否為斑馬紋 table
   highlightCurrentRow: false // 是否要高亮當(dāng)前行
  },
  filter: false,
  action: false
  } // table 表格的控制參數(shù)
 },
 components: {
  expandDom: {
  functional: true,
  props: {
   row: Object,
   render: Function,
   index: Number,
   column: {
   type: Object,
   default: null
   }
  },
  render: (h, ctx) => {
   const params = {
   row: ctx.props.row,
   index: ctx.props.index
   }
   if (ctx.props.column) params.column = ctx.props.column
   return ctx.props.render(h, params)
  }
  }
 },
 data () {
  return {
  pageIndex: 1,
  multipleSelection: [] // 多行選中
  }
 },
 mounted () {
 },
 computed: {
  height () {
  return this.$utils.Common.getWidthHeight().height - this.otherHeight
  }
 },
 methods: {
  // 切換每頁顯示的數(shù)量
  handleSizeChange (size) {
  this.$emit('handleSizeChange', size)
  this.pageIndex = 1
  },
  // 切換頁碼
  handleIndexChange (index) {
  this.$emit('handleIndexChange', index)
  this.pageIndex = index
  },
  // 多行選中
  handleSelectionChange (val) {
  this.multipleSelection = val
  this.$emit('handleSelectionChange', val)
  },
  // 顯示 篩選彈窗
  showfilterDataDialog () {
  this.$emit('handleFilter')
  },
  // 顯示 表格操作彈窗
  showActionTableDialog () {
  this.$emit('handelAction')
  }
 }
 }
</script>
<style lang="less" rel="stylesheet/less">
 @import "../../assets/styles/mixins";
 .table {
 height: 100%;
 .el-pagination {
  float: right;
  margin: 20px;
 }
 .el-table__header-wrapper, .el-table__fixed-header-wrapper {
  thead {
  tr {
   th {
   color: #333333;
   }
  }
  }
 }
 .el-table-column--selection .cell {
  padding: 0;
  text-align: center;
 }
 .el-table__fixed-right {
  bottom: 0 !important;
  right: 6px !important;
  z-index: 1004;
 }
 .operate-group {
  display: flex;
  flex-wrap: wrap;
  .item {
  margin-top: 4px;
  margin-bottom: 4px;
  display: block;
  flex: 0 0 50%;
  }
 }
 .filter-data {
  top: e("calc((100% - 100px) / 3)");
  background-color: rgba(0, 0, 0, 0.7);
 }
 .table-action {
  top: e("calc((100% - 100px) / 2)");
  background-color: rgba(0, 0, 0, 0.7);
 }
 .fix-right {
  position: absolute;
  right: 0;
  height: 100px;
  color: #ffffff;
  width: 30px;
  display: block;
  z-index: 1005;
  writing-mode: vertical-rl;
  text-align: center;
  line-height: 28px;
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
  cursor: pointer;
 }
 }
</style>

以上是“Vue2.5 結(jié)合Element UI之Table和Pagination組件實(shí)現(xiàn)分頁功能的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

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

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

AI