v1.2.0 - Add TaskContextMenu & new features; TaskDrawer is uniformly managed by GanttChart.

This commit is contained in:
LINING-PC\lining
2025-07-22 00:07:09 +08:00
parent 9cc769c622
commit 064eba945d
20 changed files with 2084 additions and 242 deletions
+6
View File
@@ -17,4 +17,10 @@ export interface Task {
description?: string
icon?: string
level?: number
// 计时相关字段
isTimerRunning?: boolean
timerStartTime?: number
timerEndTime?: number // 结束计时时间
timerStartDesc?: string // 计时开始时填写的描述
timerElapsedTime?: number
}