|
@@ -331,7 +331,8 @@ export default {
|
|
|
if (val) { //val存在
|
|
|
this.channelList = this.channelCopyList.filter((item) => {
|
|
|
// console.log("dataFilter item"+JSON.stringify(item))
|
|
|
- if (!!~item.mobile.indexOf(val) || !!~item.mobile.toUpperCase().indexOf(val.toUpperCase())) {
|
|
|
+ if (!!~item.mobile.indexOf(val) || !!~item.mobile.toUpperCase().indexOf(val.toUpperCase())
|
|
|
+ || !!~item.name.indexOf(val) || !!~item.name.indexOf(val)) {
|
|
|
return true
|
|
|
}
|
|
|
})
|