index.ts 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. import { config } from '@/config/axios/config'
  2. import { MockMethod } from 'vite-plugin-mock'
  3. const { result_code } = config
  4. const timeout = 0
  5. export default [
  6. // 获取统计
  7. {
  8. url: '/workplace/total',
  9. method: 'get',
  10. timeout,
  11. response: () => {
  12. return {
  13. code: result_code,
  14. data: {
  15. project: 40,
  16. access: 2340,
  17. todo: 10
  18. }
  19. }
  20. }
  21. },
  22. // 获取项目
  23. {
  24. url: '/workplace/project',
  25. method: 'get',
  26. timeout,
  27. response: () => {
  28. return {
  29. code: result_code,
  30. data: [
  31. {
  32. name: 'Github',
  33. icon: 'akar-icons:github-fill',
  34. message: 'workplace.introduction',
  35. personal: 'Archer',
  36. time: new Date()
  37. },
  38. {
  39. name: 'Vue',
  40. icon: 'logos:vue',
  41. message: 'workplace.introduction',
  42. personal: 'Archer',
  43. time: new Date()
  44. },
  45. {
  46. name: 'Angular',
  47. icon: 'logos:angular-icon',
  48. message: 'workplace.introduction',
  49. personal: 'Archer',
  50. time: new Date()
  51. },
  52. {
  53. name: 'React',
  54. icon: 'logos:react',
  55. message: 'workplace.introduction',
  56. personal: 'Archer',
  57. time: new Date()
  58. },
  59. {
  60. name: 'Webpack',
  61. icon: 'logos:webpack',
  62. message: 'workplace.introduction',
  63. personal: 'Archer',
  64. time: new Date()
  65. },
  66. {
  67. name: 'Vite',
  68. icon: 'vscode-icons:file-type-vite',
  69. message: 'workplace.introduction',
  70. personal: 'Archer',
  71. time: new Date()
  72. }
  73. ]
  74. }
  75. }
  76. },
  77. // 获取动态
  78. {
  79. url: '/workplace/dynamic',
  80. method: 'get',
  81. timeout,
  82. response: () => {
  83. return {
  84. code: result_code,
  85. data: [
  86. {
  87. keys: ['workplace.push', 'Github'],
  88. time: new Date()
  89. },
  90. {
  91. keys: ['workplace.push', 'Github'],
  92. time: new Date()
  93. },
  94. {
  95. keys: ['workplace.push', 'Github'],
  96. time: new Date()
  97. },
  98. {
  99. keys: ['workplace.push', 'Github'],
  100. time: new Date()
  101. },
  102. {
  103. keys: ['workplace.push', 'Github'],
  104. time: new Date()
  105. },
  106. {
  107. keys: ['workplace.push', 'Github'],
  108. time: new Date()
  109. }
  110. ]
  111. }
  112. }
  113. },
  114. // 获取团队信息
  115. {
  116. url: '/workplace/team',
  117. method: 'get',
  118. timeout,
  119. response: () => {
  120. return {
  121. code: result_code,
  122. data: [
  123. {
  124. name: 'Github',
  125. icon: 'akar-icons:github-fill'
  126. },
  127. {
  128. name: 'Vue',
  129. icon: 'logos:vue'
  130. },
  131. {
  132. name: 'Angular',
  133. icon: 'logos:angular-icon'
  134. },
  135. {
  136. name: 'React',
  137. icon: 'logos:react'
  138. },
  139. {
  140. name: 'Webpack',
  141. icon: 'logos:webpack'
  142. },
  143. {
  144. name: 'Vite',
  145. icon: 'vscode-icons:file-type-vite'
  146. }
  147. ]
  148. }
  149. }
  150. },
  151. // 获取指数
  152. {
  153. url: '/workplace/radar',
  154. method: 'get',
  155. timeout,
  156. response: () => {
  157. return {
  158. code: result_code,
  159. data: [
  160. { name: 'workplace.quote', max: 65, personal: 42, team: 50 },
  161. { name: 'workplace.contribution', max: 160, personal: 30, team: 140 },
  162. { name: 'workplace.hot', max: 300, personal: 20, team: 28 },
  163. { name: 'workplace.yield', max: 130, personal: 35, team: 35 },
  164. { name: 'workplace.follow', max: 100, personal: 80, team: 90 }
  165. ]
  166. }
  167. }
  168. }
  169. ] as MockMethod[]