bpm:完成流程表单

This commit is contained in:
YunaiV
2023-01-20 13:40:00 +08:00
parent a3f57a4424
commit fe6adf693b
7 changed files with 127 additions and 84 deletions

View File

@@ -1,5 +1,14 @@
import request from '@/config/axios'
import { FormVO } from './types'
export type FormVO = {
id: number
name: string
conf: string
fields: string[]
status: number
remark: string
createTime: string
}
// 创建工作流的表单定义
export const createFormApi = async (data: FormVO) => {

View File

@@ -1,9 +0,0 @@
export type FormVO = {
id: number
name: string
conf: string
fields: string[]
status: number
remark: string
createTime: string
}