docflow.js 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. module.exports = [
  2. {
  3. title: '我的发文',
  4. icon: 'news',
  5. module: 'docflow',
  6. platform: 'master',
  7. children: [
  8. {
  9. title: '待发公文',
  10. path: '/docflow/draft',
  11. icon: 'caogao',
  12. },
  13. {
  14. title: '已发公文',
  15. path: '/docflow/draft/other',
  16. icon: 'doc1',
  17. },
  18. ],
  19. },
  20. {
  21. title: '中心发文',
  22. icon: 'news',
  23. module: 'docflow',
  24. platform: 'master',
  25. children: [
  26. {
  27. title: '在办公文',
  28. path: '/docflow/outbox',
  29. icon: 'doc1',
  30. },
  31. {
  32. title: '已办公文',
  33. path: '/docflow/outbox/done',
  34. icon: 'column',
  35. },
  36. {
  37. title: '归档公文',
  38. path: '/docflow/outbox/archive',
  39. icon: 'column',
  40. },
  41. {
  42. title: '公文回执',
  43. path: '/docflow/outbox/feedback',
  44. icon: 'column',
  45. },
  46. ],
  47. },
  48. {
  49. title: '收文管理',
  50. path: '/docflow',
  51. icon: 'news',
  52. module: 'docflow',
  53. platform: 'school',
  54. children: [
  55. {
  56. title: '待收公文',
  57. path: '/docflow/inbox/new',
  58. icon: 'caogao',
  59. },
  60. {
  61. title: '在办公文',
  62. path: '/docflow/inbox/read',
  63. icon: 'doc1',
  64. },
  65. {
  66. title: '已办公文',
  67. path: '/docflow/inbox/done',
  68. icon: 'column',
  69. },
  70. ],
  71. },
  72. ];