v1.4.2 - bugfix 更新子Task后无限创建的问题

This commit is contained in:
LINING-PC\lining
2025-11-03 21:21:28 +08:00
parent 308a8d1421
commit 5732303faf
2 changed files with 2 additions and 6 deletions
+2
View File
@@ -142,6 +142,7 @@ const formData = reactive<Task>({
timerStartTime: undefined, // 计时器开始时间
timerEndTime: undefined, // 计时器结束时间
timerElapsedTime: 0, // 计时器已用时间
children: undefined, // 子任务列表
})
// 任务列表数据
@@ -392,6 +393,7 @@ const resetForm = () => {
timerStartTime: undefined,
timerEndTime: undefined,
timerElapsedTime: 0,
children: undefined,
})
// 清除错误信息