This commit is contained in:
670788339
2025-10-31 18:42:29 +08:00
parent 2e7fa1cc2e
commit cc4909897b

View File

@@ -640,6 +640,10 @@ export default {
// 同时更新showTags确保显示与实际数据一致
this.showTags = tags.map(tag => tag.tagName);
},
syncTags(tags) {
this.selectedTags = tags.slice(0, 5); // 强制限制为5个
this.$emit('change', this.selectedTags);
},
showChooseOrg(){
this.$refs.refChooseOrg.dlgShow = true;
},