Merge branch 'main' of ssh://18.167.251.121:10002/aidlab/FiDA_Front

This commit is contained in:
2026-03-27 11:45:10 +08:00
2 changed files with 8 additions and 2 deletions

View File

@@ -54,7 +54,7 @@
v-model:visible="item.visible"
>
<template #reference>
<span @click.stop="item.visible = !item.visible" class="icon">
<span @click.stop="openPopover(item)" class="icon">
<svg-icon name="more" size="16" />
</span>
</template>
@@ -207,6 +207,12 @@
}
})
}
const openPopover = (item: any) => {
list.value.forEach((item: any) => {
item.visible = false
})
item.visible = !item.visible
}
onMounted(() => {
MyEvent.add('newTitle', replaceTitle)
})