This commit is contained in:
parent
45b11a12c5
commit
699ef5ec61
|
|
@ -58,8 +58,7 @@
|
||||||
@click="$emit('start-upload', null)"
|
@click="$emit('start-upload', null)"
|
||||||
:disabled="
|
:disabled="
|
||||||
fileList.length === 0 ||
|
fileList.length === 0 ||
|
||||||
selectedTag.length === 0 ||
|
(selectedTag.length === 0 && newTagsList.length === 0)
|
||||||
newTagsList.length === 0
|
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
开始标注
|
开始标注
|
||||||
|
|
@ -147,6 +146,15 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
watch: {
|
||||||
|
newTagsList: {
|
||||||
|
handler(newVal) {
|
||||||
|
console.log('newTagsList', newVal)
|
||||||
|
},
|
||||||
|
deep: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue