feat: 日历空状态优化 - 添加高亮导航链接

- CalendarPanel: 移除底部关闭按钮,优化空状态文案
- 空状态添加日历图标和引导文案
- 「计划」「复盘」「投资日历」高亮可点击
- 点击计划/复盘切换到对应列表视图
- 点击投资日历打开投资日历弹窗
- 扩展 PlanningContextValue 类型支持导航方法

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
zdl
2025-12-05 13:40:43 +08:00
parent 863212f53f
commit 0cc75462aa
3 changed files with 83 additions and 2 deletions

View File

@@ -145,4 +145,14 @@ export interface PlanningContextValue {
/** 卡片背景色 */
cardBg: string;
// 导航方法(可选,用于空状态引导)
/** 切换视图模式 */
setViewMode?: (mode: 'calendar' | 'list') => void;
/** 切换列表 Tab */
setListTab?: (tab: number) => void;
/** 关闭弹窗 */
closeModal?: () => void;
}