work.ts 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /**
  2. * 常用服务
  3. * useful server
  4. */
  5. const icon_prefix = '/static/index/128/'
  6. /*
  7. */
  8. export const us = {
  9. data: [
  10. {
  11. title: 'online',
  12. icon: icon_prefix + 'qingjia1.png',
  13. description: '请假申请',
  14. useCount: 10000,
  15. routeIndex: 'online',
  16. enabled: true,
  17. },
  18. {
  19. title: '组件示例',
  20. icon: icon_prefix + 'chuchai.png',
  21. description: '出差申请',
  22. useCount: 10000,
  23. routeIndex: 'demo',
  24. enabled: true,
  25. },
  26. {
  27. title: '公文发文',
  28. icon: icon_prefix + 'gongwen.png',
  29. description: '公文发文',
  30. useCount: 10000,
  31. routeIndex: 'docSend',
  32. },
  33. {
  34. title: '通知公告',
  35. icon: icon_prefix + 'tongzhi.png',
  36. description: '查看企业对员工下发的通知公告',
  37. useCount: 10000,
  38. routeIndex: 'annotationList',
  39. enabled: true,
  40. },
  41. {
  42. title: '日程',
  43. icon: icon_prefix + 'richeng.png',
  44. description: '建立和查看个人工作安排',
  45. useCount: 10000,
  46. routeIndex: 'plan',
  47. },
  48. {
  49. title: '考勤',
  50. icon: icon_prefix + 'kaoqin.png',
  51. description: '工作考勤',
  52. routeIndex: 'attendance',
  53. useCount: 10000,
  54. },
  55. {
  56. title: '内部邮件',
  57. icon: icon_prefix + 'youjian.png',
  58. description: '查看内部消息',
  59. useCount: 10000,
  60. dot: false,
  61. routeIndex: 'mailHome',
  62. },
  63. {
  64. title: '通讯录',
  65. icon: icon_prefix + 'tongxun.png',
  66. description: '查看组员',
  67. useCount: 10000,
  68. //routeIndex:'addressBook',
  69. routeIndex: 'levelAddressBook',
  70. },
  71. {
  72. title: '日报',
  73. icon: icon_prefix + 'richang.png',
  74. description: '记录每天的工作经验和心得',
  75. useCount: 1000,
  76. },
  77. {
  78. title: '周报',
  79. icon: icon_prefix + 'zhoubao.png',
  80. description: '总结每周的工作情况和下周计划',
  81. useCount: 10000,
  82. },
  83. ],
  84. }
  85. /**
  86. * other server 其他服务
  87. */
  88. export const os = {
  89. data: [
  90. {
  91. title: '新闻中心',
  92. icon: icon_prefix + 'xinwen.png',
  93. description: '新闻中心',
  94. routeIndex: 'columnList',
  95. useCount: 10000,
  96. },
  97. {
  98. title: '文档中心',
  99. icon: icon_prefix + 'wendang.png',
  100. description: '文档中心',
  101. routeIndex: 'fileHome',
  102. useCount: 10000,
  103. },
  104. {
  105. title: '会议',
  106. icon: icon_prefix + 'huiyi.png',
  107. description: '会议',
  108. useCount: 10000,
  109. routeIndex: 'meeting',
  110. },
  111. {
  112. title: '任务中心',
  113. icon: icon_prefix + 'renwu.png',
  114. description: '任务中心',
  115. useCount: 10000,
  116. },
  117. {
  118. title: '合同',
  119. icon: icon_prefix + 'hetong.png',
  120. description: '合同',
  121. useCount: 10000,
  122. },
  123. // #ifndef MP-WEIXIN
  124. {
  125. title: '聊天',
  126. icon: icon_prefix + 'kehu.png',
  127. description: '聊天',
  128. routeIndex: 'chathome',
  129. },
  130. // #endif
  131. ],
  132. }