修复apiParams

This commit is contained in:
weibl
2026-03-05 20:59:22 +08:00
parent 7f966783ff
commit 0599f446e6

View File

@@ -57,8 +57,8 @@ const dialogVisible = computed({
},
});
const apiParams = ref({
taskId: props.taskUid,
const apiParams = computed(() => {
return { taskId: props.taskUid };
});
// const { TASK_PROGRESS_STATUS } = useDict('TASK_PROGRESS_STATUS');