bpm:增加 OA 请假的列表

This commit is contained in:
YunaiV
2023-01-21 20:25:45 +08:00
parent 1b60975ebb
commit b4e86430a3
9 changed files with 359 additions and 15 deletions

View File

@@ -1,5 +1,15 @@
import request from '@/config/axios'
import { LeaveVO } from './types'
export type LeaveVO = {
id: number
result: number
type: number
reason: string
processInstanceId: string
startTime: string
endTime: string
createTime: string
}
// 创建请假申请
export const createLeaveApi = async (data: LeaveVO) => {

View File

@@ -1,10 +0,0 @@
export type LeaveVO = {
id: number
result: number
type: number
reason: string
processInstanceId: string
startTime: string
endTime: string
createTime: string
}