新增任务模块,并接入首页任务管理路由

实现任务列表、详情与创建页面,对接 API,支持云端/本地附件,并添加单元测试。

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-23 15:26:13 +08:00
parent 09922f70fe
commit ffb16eca29
23 changed files with 2795 additions and 8 deletions

View File

@ -30,6 +30,12 @@ extension HomeRoute {
PaymentCollectionView()
case .wallet:
WalletView()
case .taskManagement:
TaskManagementView()
case .taskCreate:
TaskCreateView()
case .taskDetail(let id, let summary):
TaskDetailView(taskId: id, summary: summary)
case let .modulePlaceholder(uri, title):
HomeMigrationModuleView(title: title, uri: uri)
}