chore: remove sleep in department list api
This commit is contained in:
parent
0c3dd92592
commit
1d8676f456
@ -1,10 +1,6 @@
|
|||||||
import { faker } from '@faker-js/faker';
|
import { faker } from '@faker-js/faker';
|
||||||
import { verifyAccessToken } from '~/utils/jwt-utils';
|
import { verifyAccessToken } from '~/utils/jwt-utils';
|
||||||
import {
|
import { unAuthorizedResponse, useResponseSuccess } from '~/utils/response';
|
||||||
sleep,
|
|
||||||
unAuthorizedResponse,
|
|
||||||
useResponseSuccess,
|
|
||||||
} from '~/utils/response';
|
|
||||||
|
|
||||||
const formatterCN = new Intl.DateTimeFormat('zh-CN', {
|
const formatterCN = new Intl.DateTimeFormat('zh-CN', {
|
||||||
timeZone: 'Asia/Shanghai',
|
timeZone: 'Asia/Shanghai',
|
||||||
@ -59,8 +55,6 @@ export default eventHandler(async (event) => {
|
|||||||
return unAuthorizedResponse(event);
|
return unAuthorizedResponse(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
await sleep(600);
|
|
||||||
|
|
||||||
const listData = structuredClone(mockData);
|
const listData = structuredClone(mockData);
|
||||||
|
|
||||||
return useResponseSuccess(listData);
|
return useResponseSuccess(listData);
|
||||||
|
Loading…
Reference in New Issue
Block a user