1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
| import { MockMethod } from 'vite-plugin-mock';
| import { Random } from 'mockjs';
| import { resultPageSuccess } from '../_util';
|
| function getRandomPics(count = 10): string[] {
| const arr: string[] = [];
| for (let i = 0; i < count; i++) {
| arr.push(Random.image('800x600', Random.color(), Random.color(), Random.title()));
| }
| return arr;
| }
|
| const demoList = (() => {
| const result: any[] = [];
| for (let index = 0; index < 200; index++) {
| result.push({
| id: `${index}`,
| beginTime: '@datetime',
| endTime: '@datetime',
| address: '@city()',
| name: '@cname()',
| name1: '@cname()',
| name2: '@cname()',
| name3: '@cname()',
| name4: '@cname()',
| name5: '@cname()',
| name6: '@cname()',
| name7: '@cname()',
| name8: '@cname()',
| radio1: `选项${index + 1}`,
| radio2: `选项${index + 1}`,
| radio3: `选项${index + 1}`,
| avatar: Random.image('400x400', Random.color(), Random.color(), Random.first()),
| imgArr: getRandomPics(Math.ceil(Math.random() * 3) + 1),
| imgs: getRandomPics(Math.ceil(Math.random() * 3) + 1),
| date: `@date('yyyy-MM-dd')`,
| time: `@time('HH:mm')`,
| 'no|100000-10000000': 100000,
| 'status|1': ['normal', 'enable', 'disable'],
| });
| }
| return result;
| })();
|
| export default [
| {
| url: '/basic-api/table/getDemoList',
| timeout: 100,
| method: 'get',
| response: ({ query }) => {
| const { page = 1, pageSize = 20 } = query;
| return resultPageSuccess(page, pageSize, demoList);
| },
| },
| ] as MockMethod[];
|
|