任务看板.base 867 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. filters:
  2. and:
  3. - file.ext == "md"
  4. - type == "task"
  5. properties:
  6. file.name:
  7. displayName: 文件
  8. project:
  9. displayName: 项目
  10. app:
  11. displayName: 应用
  12. module:
  13. displayName: 模块
  14. status:
  15. displayName: 状态
  16. year:
  17. displayName: 年份
  18. updated:
  19. displayName: 更新
  20. views:
  21. - type: table
  22. name: 任务看板
  23. groupBy:
  24. property: status
  25. direction: ASC
  26. order:
  27. - file.name
  28. - project
  29. - app
  30. - module
  31. - status
  32. - year
  33. - updated
  34. sort:
  35. - property: file.mtime
  36. direction: DESC
  37. limit: 100
  38. - type: table
  39. name: 2026 任务
  40. filters:
  41. and:
  42. - year == 2026
  43. groupBy:
  44. property: module
  45. direction: ASC
  46. order:
  47. - file.name
  48. - project
  49. - app
  50. - module
  51. - status
  52. - updated
  53. limit: 100