使用element-ui table組件的篩選功能的一個小坑

使用自定義模板和篩選功能,一開始的代碼
<el-table-column v-if="key==='isShow'" label="是否在發(fā)現(xiàn)頁展示" :filters="[{text:'已展示',value: true},{text: '未展示', value: false}]" :filter-method="filterShow">
<template slot-scope="scope">
<el-tag type="success" v-if="scope.row.isShow">顯示</el-tag>
<el-tag type="danger" v-else>不顯示</el-tag>
</template>
</el-table-column>
<el-table-column v-else-if="key==='isHandle'" label="是否已經(jīng)審核" :filters="[{text:'已處理',value: true},{text: '未處理', value: false}]" :filter-method="filterHandle">
<template slot-scope="scope">
<el-tag type="info" v-if="scope.row.isHandle">已處理</el-tag>
<el-tag type="warning" v-else>未處理</el-tag>
</template>
</el-table-column>
網(wǎng)站題目:詳解使用element-uitable組件的篩選功能的一個小坑-創(chuàng)新互聯(lián)
瀏覽地址:http://chinadenli.net/article38/shosp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制網(wǎng)站、自適應(yīng)網(wǎng)站、App設(shè)計、商城網(wǎng)站、電子商務(wù)、關(guān)鍵詞優(yōu)化
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容