溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

element ui表格如何實現(xiàn)下拉篩選功能

發(fā)布時間:2021-11-16 10:23:43 來源:億速云 閱讀:502 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要講解了“element ui表格如何實現(xiàn)下拉篩選功能”,文中的講解內(nèi)容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“element ui表格如何實現(xiàn)下拉篩選功能”吧!

1、default-sort中prop傳入要排序的字段(接口返回或自己定義的數(shù)據(jù))、order代表排序,這里用到降序
2、filters對象中text代表頁面中顯示的篩選文字,value代表篩選用到的值,在方法中filterHandler用到
3、column 的 key,如果需要使用 filter-change 事件,則需要此屬性標識是哪個 column 的篩選條件(綁定的是要對接口中排序的字段)
4、數(shù)據(jù)過濾的選項是否多選(multiple代表是否查詢多條)
5、fliter-methods:數(shù)據(jù)過濾使用的方法,如果是多選的篩選項,對每一條數(shù)據(jù)會執(zhí)行多次,任意一次返回 true 就會顯示。參數(shù)為value, row, column

<template>
<el-table
        :data="tableData"
        
        empty-text="暫無數(shù)據(jù)"
        ref="filterTable"
      >
        <el-table-column
          prop="deviceType"
          label="設備類型"
          show-overflow-tooltip
          column-key="deviceType"
          :filters="[
            { text: '氣象設備', value: 1 },
            { text: '墑情設備', value: 0 },
          ]"
          :filter-method="filterHandler"
          :filter-multiple="true"
        >
          <template slot-scope="scope">
            <span v-if="scope.row.deviceType == 1">氣象監(jiān)測設備</span>
            <span v-if="scope.row.deviceType == 0">墑情監(jiān)測設備</span>
            <span></span>
          </template>
        </el-table-column>
      </el-table>
</template>

methods: {
// 表頭過濾事件
    filterHandler(value, row, column) {
      const property = column["property"];
      return row[property] === value;
    }
     }

數(shù)據(jù)類型

element ui表格如何實現(xiàn)下拉篩選功能

頁面效果

element ui表格如何實現(xiàn)下拉篩選功能

感謝各位的閱讀,以上就是“element ui表格如何實現(xiàn)下拉篩選功能”的內(nèi)容了,經(jīng)過本文的學習后,相信大家對element ui表格如何實現(xiàn)下拉篩選功能這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!

向AI問一下細節(jié)

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

AI