mirror of
https://github.com/vbenjs/vben-admin-thin-next.git
synced 2025-01-24 10:33:47 +08:00
26 lines
523 B
TypeScript
26 lines
523 B
TypeScript
import { MockMethod } from 'vite-plugin-mock';
|
|
import { resultSuccess } from '../_util';
|
|
|
|
const demoList = (() => {
|
|
const result: any[] = [];
|
|
for (let index = 0; index < 20; index++) {
|
|
result.push({
|
|
label: `选项${index}`,
|
|
value: `${index}`,
|
|
});
|
|
}
|
|
return result;
|
|
})();
|
|
|
|
export default [
|
|
{
|
|
url: '/api/select/getDemoOptions',
|
|
timeout: 4000,
|
|
method: 'get',
|
|
response: ({ query }) => {
|
|
console.log(query);
|
|
return resultSuccess(demoList);
|
|
},
|
|
},
|
|
] as MockMethod[];
|