38 lines
984 B
Markdown
38 lines
984 B
Markdown
|
|
---
|
|
|
|
#复盘/0
|
|
|
|
## 一句话描述
|
|
|
|
[___项目Bug索引_____]
|
|
|
|
---
|
|
|
|
```dataview
|
|
TABLE without ID
|
|
link(file.path, file.name) as "文件名", filter(file.tags, (t)=>startswith(t,"#Bug/")) as "状态", file.mtime AS "最后修改时间"
|
|
FROM "01-项目/2604-编程软件"
|
|
WHERE startswith(file.name, "Bug") and any(file.tags, (t)=>t="#Bug/碎片")
|
|
SORT file.mtime DESC
|
|
```
|
|
|
|
```dataview
|
|
TABLE without ID
|
|
link(file.path, file.name) as "文件名", filter(file.tags, (t)=>startswith(t,"#Bug/")) as "状态", file.mtime AS "最后修改时间"
|
|
FROM "01-项目/2604-编程软件"
|
|
WHERE startswith(file.name, "Bug") and any(file.tags, (t)=>t="#Bug/评估")
|
|
SORT file.mtime DESC
|
|
```
|
|
|
|
|
|
```dataview
|
|
TABLE without ID
|
|
link(file.path, file.name) as "文件名", filter(file.tags, (t)=>startswith(t,"#Bug/")) as "状态", file.mtime AS "最后修改时间"
|
|
FROM "01-项目/2604-编程软件"
|
|
WHERE startswith(file.name, "Bug") and any(file.tags, (t)=>t="#Bug/关闭")
|
|
SORT file.mtime DESC
|
|
```
|
|
|
|
|