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
| import { MockMethod } from 'vite-plugin-mock';
| import { resultSuccess } from '../_util';
|
| const demoList = (keyword, count = 20) => {
| const result = {
| list: [] as any[],
| };
| for (let index = 0; index < count; index++) {
| result.list.push({
| name: `${keyword ?? ''}选项${index}`,
| id: `${index}`,
| });
| }
| return result;
| };
|
| export default [
| {
| url: '/basic-api/select/getDemoOptions',
| timeout: 1000,
| method: 'get',
| response: ({ query }) => {
| const { keyword, count } = query;
| console.log(keyword);
| return resultSuccess(demoList(keyword, count));
| },
| },
| ] as MockMethod[];
|
|