juechafun/00-临时碎片/20260115-备忘-觉察知识-待处理状态.md
2026-01-15 10:01:16 +08:00

33 lines
730 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#临时/备忘
## 待处理简述
【新知】归纳当前页面的 Dataview 语法时间函数dur("1m20s"))
【新知】可以将本文件放置到资源目录持久化
## 一句话描述
[_全局待处理文件_______]
```dataview
TABLE WITHOUT ID
link(file.path, file.name) AS "文件名",
file.ctime AS "创建时间",
file.mtime AS "最后修改时间"
FROM ""
WHERE !contains(file.tags, "#状态/待处理")
AND file.mtime <= date(today) - dur("21m20s")
SORT file.mtime DESC
```
```dataview
TABLE WITHOUT ID
link(file.path, file.name) AS "文件名",
file.ctime AS "创建时间",
file.mtime AS "最后修改时间"
FROM ""
WHERE contains(file.tags, "#状态/待处理")
SORT file.mtime DESC
```