Files
ipms-sjy/yudao-ui-admin-vue3/src/api/bpm/leave/index.ts

19 lines
554 B
TypeScript
Raw Normal View History

2022-07-28 12:18:38 +08:00
import { useAxios } from '@/hooks/web/useAxios'
import { LeaveVO } from './types'
const request = useAxios()
// 创建请假申请
export const createLeaveApi = async (data: LeaveVO) => {
return await request.post({ url: '/bpm/oa/leave/create', data: data })
}
// 获得请假申请
export const getLeaveApi = async (id: number) => {
return await request.get({ url: '/bpm/oa/leave/get?id=' + id })
}
// 获得请假申请分页
export const getLeavePageApi = async (params) => {
return await request.get({ url: '/bpm/oa/leave/page', params })
}