blacklist.js 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. name: "Mr、无涯",
  19. qq: "2198457489",
  20. excuse: "已原谅",
  21. },
  22. {
  23. name: "玩世不恭丶江小白",
  24. qq: "1779263221",
  25. excuse: "睁眼说瞎话",
  26. },
  27. {
  28. name: "福州客家网络科技有限公司(潘芳林等兄弟二人)",
  29. qq: "1409198410、1778486252",
  30. excuse:
  31. "剽窃、破解框架授权并发布到网上还伪装成善人,公开道歉并尊重我的劳动成果可以选择原谅",
  32. },
  33. {
  34. name: "willina",
  35. qq: "405522648",
  36. excuse:
  37. "上来就开骂道:You and your git submit are just a rubbish,不可原谅",
  38. },
  39. {
  40. name: "7(赵海鹏)",
  41. qq: "252334666",
  42. excuse: "欺骗两个善良的小姑娘,做完项目不付70%的尾款,强烈抵制",
  43. },
  44. {
  45. name: "生活,一半记忆.一半继续",
  46. qq: "252667193",
  47. excuse: "30多岁,不学无术,造谣抹黑,不可原谅",
  48. },
  49. {
  50. name: "AIRLOO",
  51. qq: "5971794",
  52. excuse: "已原谅",
  53. },
  54. {
  55. name: "master Z",
  56. qq: "1832819123",
  57. excuse: "不尊重别人的劳动成果,认为开源就得无偿替他服务,不可原谅",
  58. },
  59. {
  60. name: "想象中。。。",
  61. qq: "329492979",
  62. excuse: "不尊重别人的劳动成果,认为开源就得无偿替他服务,不可原谅",
  63. },
  64. {
  65. name: "苏潍—菏泽微智科技",
  66. qq: "328580081",
  67. excuse: "无言以对",
  68. },
  69. {
  70. name: "罗阳",
  71. qq: "1320168680",
  72. excuse: "不尊重别人的劳动成果,认为开源就得无偿替他服务,不可原谅",
  73. },
  74. ];
  75. module.exports = [
  76. {
  77. url: "/blacklist/getList",
  78. type: "post",
  79. response() {
  80. return {
  81. code: 200,
  82. msg: "success",
  83. data,
  84. };
  85. },
  86. },
  87. ];