forked from TALL/check-work
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
644 B
18 lines
644 B
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);
|
|
|
|
// 导出考勤excel
|
|
export const clockExport = params => axios.post(`${defaultwbs}/clock/export`, params);
|
|
|