import axios from 'axios'; const defaultwbs = `https://test.tall.wiki/gateway/defaultwbs`; // 查询考勤信息 export const clockQuery = params => axios.post(`${defaultwbs}/clock/query`, params); // 查询考勤信息 export const clockPunch = params => axios.post(`${defaultwbs}/clock/punch`, params); // 查询所有成员 export const queryChecker = params => axios.post(`${defaultwbs}/deliver/queryChecker`, params); // 查询所有成员 export const clockAudit = params => axios.post(`${defaultwbs}/clock/audit`, params);