19 lines
383 B
JavaScript
19 lines
383 B
JavaScript
|
|
import request from '@/utils/request'
|
||
|
|
|
||
|
|
// 考勤管理-上下班时间
|
||
|
|
export function getAttendanceTime(data) {
|
||
|
|
return request({
|
||
|
|
url: '/app/appExamine/getAttendanceTime',
|
||
|
|
method: 'get',
|
||
|
|
params: data
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
// 考勤管理-打卡
|
||
|
|
export function attendancePunch(data) {
|
||
|
|
return request({
|
||
|
|
url: '/app/appExamine/attendancePunch',
|
||
|
|
method: 'post',
|
||
|
|
data
|
||
|
|
})
|
||
|
|
}
|