index.ts 1011 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. import { config } from '@/config/axios/config'
  2. import { MockMethod } from 'vite-plugin-mock'
  3. const { result_code } = config
  4. const timeout = 0
  5. const dictObj: Recordable = {
  6. importance: [
  7. {
  8. value: 0,
  9. label: 'tableDemo.commonly'
  10. },
  11. {
  12. value: 1,
  13. label: 'tableDemo.good'
  14. },
  15. {
  16. value: 2,
  17. label: 'tableDemo.important'
  18. }
  19. ]
  20. }
  21. export default [
  22. // 字典接口
  23. {
  24. url: '/dict/list',
  25. method: 'get',
  26. timeout,
  27. response: () => {
  28. return {
  29. code: result_code,
  30. data: dictObj
  31. }
  32. }
  33. },
  34. // 获取某个字典
  35. {
  36. url: '/dict/one',
  37. method: 'get',
  38. timeout,
  39. response: () => {
  40. return {
  41. code: result_code,
  42. data: [
  43. {
  44. label: 'test1',
  45. value: 0
  46. },
  47. {
  48. label: 'test2',
  49. value: 1
  50. },
  51. {
  52. label: 'test3',
  53. value: 2
  54. }
  55. ]
  56. }
  57. }
  58. }
  59. ] as MockMethod[]