fix: 跟踪任务编号的传入获取信息

This commit is contained in:
TsMask
2025-07-02 15:27:45 +08:00
parent 2181d51999
commit e3f70640b8
4 changed files with 12 additions and 8 deletions

View File

@@ -9,7 +9,7 @@ const { t } = useI18n();
const { getDict } = useDictStore();
const props = defineProps({
traceId: {
id: {
type: [String, Number],
required: true,
},
@@ -50,7 +50,7 @@ onMounted(() => {
})
.finally(() => {
// 获取信息
fnGetTaskInfo(props.traceId);
fnGetTaskInfo(props.id);
});
});
</script>