blacklist.js 512 B

123456789101112131415161718192021222324252627282930
  1. const data = [
  2. {
  3. name: "奉/fendou飘逸的梦",
  4. qq: "812770127",
  5. excuse: "上来就开骂,不可原谅",
  6. },
  7. {
  8. name: "江荻",
  9. qq: "2324945654",
  10. excuse: "上来就开骂,不可原谅",
  11. },
  12. {
  13. name: "Diamond",
  14. qq: "494904935",
  15. excuse: "跟我道歉可以选择原谅",
  16. },
  17. ];
  18. export default [
  19. {
  20. url: "/blacklist/getList",
  21. type: "post",
  22. response: () => {
  23. return {
  24. code: 200,
  25. msg: "success",
  26. data,
  27. };
  28. },
  29. },
  30. ];