index.ts 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. import { config } from '@/config/axios/config'
  2. import { MockMethod } from 'vite-plugin-mock'
  3. import { toAnyString } from '@/utils'
  4. import Mock from 'mockjs'
  5. const { result_code } = config
  6. const timeout = 0
  7. const count = 100
  8. const baseContent =
  9. '<p>I am testing data, I am testing data.</p><p><img src="https://wpimg.wallstcn.com/4c69009c-0fd4-4153-b112-6cb53d1cf943"></p>'
  10. let List: {
  11. id: string
  12. author: string
  13. title: string
  14. content: string
  15. importance: number
  16. display_time: string
  17. pageviews: number
  18. }[] = []
  19. for (let i = 0; i < count; i++) {
  20. List.push(
  21. Mock.mock({
  22. id: toAnyString(),
  23. // timestamp: +Mock.Random.date('T'),
  24. author: '@first',
  25. title: '@title(5, 10)',
  26. content: baseContent,
  27. importance: '@integer(1, 3)',
  28. display_time: '@datetime',
  29. pageviews: '@integer(300, 5000)'
  30. // image_uri
  31. })
  32. )
  33. }
  34. export default [
  35. // 列表接口
  36. {
  37. url: '/example/list',
  38. method: 'get',
  39. timeout,
  40. response: ({ query }) => {
  41. const { title, pageIndex, pageSize } = query
  42. const mockList = List.filter((item) => {
  43. if (title && item.title.indexOf(title) < 0) return false
  44. return true
  45. })
  46. const pageList = mockList.filter(
  47. (_, index) => index < pageSize * pageIndex && index >= pageSize * (pageIndex - 1)
  48. )
  49. return {
  50. code: result_code,
  51. data: {
  52. total: mockList.length,
  53. list: pageList
  54. }
  55. }
  56. }
  57. },
  58. // 保存接口
  59. {
  60. url: '/example/save',
  61. method: 'post',
  62. timeout,
  63. response: ({ body }) => {
  64. if (!body.id) {
  65. List = [
  66. Object.assign(body, {
  67. id: toAnyString()
  68. })
  69. ].concat(List)
  70. return {
  71. code: result_code,
  72. data: 'success'
  73. }
  74. } else {
  75. List.map((item) => {
  76. if (item.id === body.id) {
  77. for (const key in item) {
  78. item[key] = body[key]
  79. }
  80. }
  81. })
  82. return {
  83. code: result_code,
  84. data: 'success'
  85. }
  86. }
  87. }
  88. },
  89. // 详情接口
  90. {
  91. url: '/example/detail',
  92. method: 'get',
  93. response: ({ query }) => {
  94. const { id } = query
  95. for (const example of List) {
  96. if (example.id === id) {
  97. return {
  98. code: result_code,
  99. data: example
  100. }
  101. }
  102. }
  103. }
  104. },
  105. // 删除接口
  106. {
  107. url: '/example/delete',
  108. method: 'post',
  109. response: ({ body }) => {
  110. const ids = body.ids
  111. if (!ids) {
  112. return {
  113. code: '500',
  114. message: '请选择需要删除的数据'
  115. }
  116. } else {
  117. let i = List.length
  118. while (i--) {
  119. if (ids.indexOf(List[i].id) !== -1) {
  120. List.splice(i, 1)
  121. }
  122. }
  123. return {
  124. code: result_code,
  125. data: 'success'
  126. }
  127. }
  128. }
  129. }
  130. ] as MockMethod[]