Files
jobslink-user-clent/api/test.js

15 lines
275 B
JavaScript
Raw Normal View History

2024-02-02 14:44:30 +08:00
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;
}