feat: bpm api

This commit is contained in:
xingyu
2022-07-28 12:18:38 +08:00
parent 88fc7ed39b
commit ee6317e906
20 changed files with 827 additions and 15 deletions

View File

@ -0,0 +1,18 @@
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 })
}