index.ts 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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 List: {
  6. username: string
  7. password: string
  8. role: string
  9. roleId: string
  10. permissions: string | string[]
  11. }[] = [
  12. {
  13. username: 'admin',
  14. password: 'admin',
  15. role: 'admin',
  16. roleId: '1',
  17. permissions: ['*.*.*']
  18. },
  19. {
  20. username: 'test',
  21. password: 'test',
  22. role: 'test',
  23. roleId: '2',
  24. permissions: ['example:dialog:create', 'example:dialog:delete']
  25. }
  26. ]
  27. export default [
  28. // 列表接口
  29. {
  30. url: '/user/list',
  31. method: 'get',
  32. response: ({ query }) => {
  33. const { username, pageIndex, pageSize } = query
  34. const mockList = List.filter((item) => {
  35. if (username && item.username.indexOf(username) < 0) return false
  36. return true
  37. })
  38. const pageList = mockList.filter(
  39. (_, index) => index < pageSize * pageIndex && index >= pageSize * (pageIndex - 1)
  40. )
  41. return {
  42. code: result_code,
  43. data: {
  44. total: mockList.length,
  45. list: pageList
  46. }
  47. }
  48. }
  49. },
  50. // 登录接口
  51. {
  52. url: '/user/login',
  53. method: 'post',
  54. timeout,
  55. response: ({ body }) => {
  56. const data = body
  57. let hasUser = false
  58. for (const user of List) {
  59. if (user.username === data.username && user.password === data.password) {
  60. hasUser = true
  61. return {
  62. code: result_code,
  63. data: user
  64. }
  65. }
  66. }
  67. if (!hasUser) {
  68. return {
  69. code: '500',
  70. message: '账号或密码错误'
  71. }
  72. }
  73. }
  74. },
  75. // 退出接口
  76. {
  77. url: '/user/loginOut',
  78. method: 'get',
  79. timeout,
  80. response: () => {
  81. return {
  82. code: result_code,
  83. data: null
  84. }
  85. }
  86. }
  87. ] as MockMethod[]