gf-vben-admin/mock/demo/select-demo.ts

29 lines
567 B
TypeScript
Raw Normal View History

2020-12-27 22:25:35 +08:00
import { MockMethod } from 'vite-plugin-mock';
import { resultSuccess } from '../_util';
const list: any[] = [];
2020-12-27 22:25:35 +08:00
const demoList = (() => {
const result = {
list: list,
};
2020-12-27 22:25:35 +08:00
for (let index = 0; index < 20; index++) {
result.list.push({
name: `选项${index}`,
id: `${index}`,
2020-12-27 22:25:35 +08:00
});
}
return result;
})();
export default [
{
url: '/basic-api/select/getDemoOptions',
timeout: 1000,
method: 'post',
2020-12-27 22:25:35 +08:00
response: ({ query }) => {
2021-02-09 23:47:14 +08:00
console.log(query);
2020-12-27 22:25:35 +08:00
return resultSuccess(demoList);
},
},
] as MockMethod[];