This commit is contained in:
18500206848
2024-02-02 14:44:30 +08:00
parent 6647042acb
commit 91172a730c
255 changed files with 24805 additions and 0 deletions

14
api/test.js Normal file
View File

@@ -0,0 +1,14 @@
import * as AxiosUtils from '../untils/AxiosUtils.js';
export async function test(req) {
const url = '/checkIn/checkInCancel';
const rsp = await DoPost(url, req);
if (rsp.code !== 0) {
throw new Error(rsp.msg);
}
const result = rsp.data;
return result;
}