artwork-repair-h5/http/mine.js

22 lines
421 B
JavaScript
Raw Normal View History

2024-07-08 06:25:32 +00:00
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
}