mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 19:41:44 +08:00
23 lines
489 B
TypeScript
23 lines
489 B
TypeScript
import type { API } from '@/services/model/baseModel';
|
|
import { ResultEnum } from '@/enums/httpEnum';
|
|
|
|
interface MockResponseOptions<T = any> {
|
|
status: number
|
|
statusText: string
|
|
responseHeaders: Record<string, any>
|
|
body: API<T>
|
|
}
|
|
|
|
export function createMock(options: Partial<API>): MockResponseOptions {
|
|
return {
|
|
status: 200,
|
|
statusText: 'OK',
|
|
responseHeaders: {},
|
|
body: {
|
|
code: ResultEnum.SUCCESS,
|
|
message: 'succeed',
|
|
...options,
|
|
},
|
|
};
|
|
}
|