iview表格搜索功能

Posted limengyao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iview表格搜索功能相关的知识,希望对你有一定的参考价值。

template中:
<Input v-model.trim="tagData.name" :search="true" enter-button size="small" class="fr mar-r16 wd-20P" @on-search="() => this.getUserFn(tagData.name)"/>
 
methods中:
getUserFn (item) {
// console.log(item)
let name = this.$route.params.name
this.$api.ceph(this.zone).getUser(name)
.then(res => {
console.log(res)
let array = []
if (item == (‘‘ || null)) {
this.tagData = res.data.data
}else {
let arr = res.data.data
for (let i=0; i<arr.length; i++) {
// console.log(arr[i].name)
if (arr[i].name.indexOf(item)>-1) {
// console.log(arr[i])
array.push(arr[i])
}
}
this.tagData = array
}
})
.catch()
},

以上是关于iview表格搜索功能的主要内容,如果未能解决你的问题,请参考以下文章

iview 表格单选按钮功能的实现

iView中表格(Table)添加点击行展开扩展说明的功能

iview表格行/列合并

iview的表格如何单击这行就选中

vuejs或者iview当中表格怎么合并单元格

iview表格导出Excel时遇到的问题:导出.xls文件&导出的表格部分列错位