Merge branch 'dev_vite' of ssh://18.167.251.121:10002/aidlab/aida_front into dev_vite

This commit is contained in:
X1627315083
2025-10-27 15:53:02 +08:00

View File

@@ -333,21 +333,24 @@ export default defineComponent({
return data return data
}, },
deleteShow(value:any){ deleteShow(v:any){
// this.options // this.options
this.labelBor = false this.labelBor = false
for(let index = 0; index<value.length; index++){ const call = (value:any)=> {
if(value[index].checkAll){ for(let index = 0; index<value.length; index++){
this.labelBor = true if(value[index].checkAll){
// break this.labelBor = true
return // break
return
}
if(value[index].childList != null){
call(value[index].childList)
}
} }
if(value[index].childList != null){ };
this.deleteShow(value[index].childList) call(v)
}
}
} }
} },
}) })
</script> </script>
<style lang="less"> <style lang="less">