This commit is contained in:
BianLzhaoMin 2025-12-08 17:40:56 +08:00
parent 45b11a12c5
commit 699ef5ec61
1 changed files with 10 additions and 2 deletions

View File

@ -58,8 +58,7 @@
@click="$emit('start-upload', null)"
:disabled="
fileList.length === 0 ||
selectedTag.length === 0 ||
newTagsList.length === 0
(selectedTag.length === 0 && newTagsList.length === 0)
"
>
开始标注
@ -147,6 +146,15 @@ export default {
}
},
},
watch: {
newTagsList: {
handler(newVal) {
console.log('newTagsList', newVal)
},
deep: true,
},
},
}
</script>