This commit is contained in:
aihe 2024-12-22 22:48:18 +08:00
parent b942da7c4f
commit 62ac8c41f3

View File

@ -66,7 +66,7 @@
curShowData() { curShowData() {
let ret = this.curList || [] let ret = this.curList || []
if(this.keywords) { if(this.keywords) {
ret = ret?.filter?.(t=> t.name?.indexOf(this.keywords) > -1) ret = ret?.filter?.(t=> t.name?.toLowerCase?.()?.indexOf(this.keywords.toLowerCase()) > -1)
} }
return ret return ret
} }