You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
421 B
JavaScript

3 months ago
import http from './interface'
// 考勤信息
export const getWorkingTime = (data) => {
return http.request({
url: '/oa/working-time/best',
method: 'POST',
data
})
}
// 获取员工列表
export const getEmpList = (data) => {
return http.request({
url: '/department/users',
method: 'POST',
data
})
}
export default {
getWorkingTime,
getEmpList
}