1
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
|
||||
````tabs
|
||||
--- 最近编辑
|
||||
```dataview
|
||||
TABLE file.mtime as "最后修改"
|
||||
FROM ""
|
||||
SORT file.mtime DESC
|
||||
LIMIT 15
|
||||
```
|
||||
--- 任务管理
|
||||
|
||||
```dataview
|
||||
TASK
|
||||
FROM ""
|
||||
GROUP BY completed
|
||||
```
|
||||
|
||||
--- 每月新建文档数
|
||||
|
||||
```dataview
|
||||
TABLE length(rows) as "笔记数量"
|
||||
|
||||
FROM ""
|
||||
|
||||
GROUP BY date(file.ctime).year + "-" + date(file.ctime).month
|
||||
|
||||
SORT rows.file.ctime DESC
|
||||
|
||||
```
|
||||
|
||||
--- 即将到期
|
||||
|
||||
```dataview
|
||||
TABLE
|
||||
title AS "标题",
|
||||
priority AS "优先级",
|
||||
dueDate AS "截止日期",
|
||||
(date(dueDate) - date(today)) AS "剩余天数",
|
||||
tags AS "标签"
|
||||
FROM "/"
|
||||
WHERE status = "进行中" AND date(dueDate) - date(today) <= 30
|
||||
SORT dueDate ASC
|
||||
|
||||
```
|
||||
|
||||
````
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
---
|
||||
title: Bug修复计划
|
||||
priority: 紧急
|
||||
dueDate: 2025-03-18
|
||||
status: 进行中
|
||||
tags: ["开发", "修复"]
|
||||
---
|
||||
@@ -0,0 +1,7 @@
|
||||
---
|
||||
title: 产品功能需求
|
||||
priority: 高
|
||||
dueDate: 2025-04-15
|
||||
status: 进行中
|
||||
tags: ["产品", "需求"]
|
||||
---
|
||||
@@ -0,0 +1,7 @@
|
||||
---
|
||||
title: 团队建设活动
|
||||
priority: 低
|
||||
dueDate: 2025-06-15
|
||||
status: 规划中
|
||||
tags: ["团队", "活动"]
|
||||
---
|
||||
@@ -0,0 +1,7 @@
|
||||
---
|
||||
title: 市场调研报告
|
||||
priority: 低
|
||||
dueDate: 2025-05-10
|
||||
status: 未开始
|
||||
tags: ["市场", "调研"]
|
||||
---
|
||||
@@ -0,0 +1,7 @@
|
||||
---
|
||||
title: 技术架构设计
|
||||
priority: 高
|
||||
dueDate: 2025-03-25
|
||||
status: 进行中
|
||||
tags: ["技术", "设计"]
|
||||
---
|
||||
@@ -0,0 +1,7 @@
|
||||
---
|
||||
title: 每周例会记录
|
||||
priority: 中
|
||||
dueDate: 2025-03-21
|
||||
status: 未开始
|
||||
tags: ["会议", "团队"]
|
||||
---
|
||||
@@ -0,0 +1,7 @@
|
||||
---
|
||||
title: 用户反馈分析
|
||||
priority: 中
|
||||
dueDate: 2025-04-05
|
||||
status: 未开始
|
||||
tags: ["用户", "分析"]
|
||||
---
|
||||
@@ -0,0 +1,11 @@
|
||||
## 待办任务
|
||||
|
||||
- [ ] 待办任务 01
|
||||
- [ ] 待办任务 02
|
||||
- [ ] 待办任务 03
|
||||
|
||||
## 已完成
|
||||
|
||||
- [x] 背单词
|
||||
- [x] 运动 30 分钟
|
||||
- [x] 读书 30 分钟
|
||||
@@ -0,0 +1,7 @@
|
||||
---
|
||||
title: 财务季度报告
|
||||
priority: 高
|
||||
dueDate: 2025-04-30
|
||||
status: 未开始
|
||||
tags: ["财务", "报告"]
|
||||
---
|
||||
@@ -0,0 +1,7 @@
|
||||
---
|
||||
title: 项目A计划
|
||||
priority: 高
|
||||
dueDate: 2025-03-30
|
||||
status: 进行中
|
||||
tags: ["项目", "规划"]
|
||||
---
|
||||
@@ -0,0 +1,7 @@
|
||||
---
|
||||
title: 项目复盘会议
|
||||
priority: 中
|
||||
dueDate: 2025-04-10
|
||||
status: 未开始
|
||||
tags: ["项目", "会议"]
|
||||
---
|
||||
Reference in New Issue
Block a user