This commit is contained in:
duanliang
2025-04-26 21:04:21 +08:00
parent 593d4a88d3
commit 6fef9d7bf5
3 changed files with 15 additions and 6 deletions

View File

@@ -277,7 +277,13 @@
})
}
const onInput = debounce((e) => {
getVideoRegions('search')
if(e){
getVideoRegions('search')
}else{
getVideoRegions()
}
}, 500)
const clearHlsRefs = () => {
if (hlsRefs.length > 0) {
@@ -514,6 +520,9 @@
if(search=='search'){
regionList.value.forEach((item,index)=>{
item.show = true
item.resourcesList.forEach((r,i)=>{
r.show = true
})
})
}