This commit is contained in:
ljx
2025-08-21 17:32:10 +08:00
parent 297048ab91
commit aab67593eb
9 changed files with 1154 additions and 64 deletions

View File

@ -463,7 +463,16 @@ const getDetails = (row: any) => {
}
});
};
//监听项目id刷新数据
const listeningProject = watch(
() => currentProject.value?.id,
(nid, oid) => {
getTabsList();
}
);
onUnmounted(() => {
listeningProject();
});
onMounted(() => {
getTabsList();
});