map.ts 609 B

1234567891011121314151617181920212223242526272829
  1. import { MockMethod } from "vite-plugin-mock";
  2. // http://mockjs.com/examples.html#Object
  3. const mapList = (): any => {
  4. const result: any[] = [];
  5. for (let index = 0; index < 200; index++) {
  6. result.push({
  7. plateNumber: "豫A@natural(11111, 99999)@character('upper')",
  8. driver: "@cname()",
  9. "orientation|1-360": 100,
  10. "lng|113-114.1-10": 1,
  11. "lat|34-35.1-10": 1,
  12. });
  13. }
  14. return result;
  15. };
  16. export default [
  17. {
  18. url: "/getMapInfo",
  19. method: "get",
  20. response: () => {
  21. return {
  22. code: 0,
  23. info: mapList(),
  24. };
  25. },
  26. },
  27. ] as MockMethod[];