【缺陷修复】BPM:流程重新发起时,禁用业务表单的情况,避免报错

This commit is contained in:
YunaiV
2024-07-20 20:05:42 +08:00
parent 46da7e2876
commit 5d91131eb7
4 changed files with 23 additions and 17 deletions

View File

@ -1,6 +1,6 @@
import request from '@/config/axios'
export const getProcessDefinition = async (id: number, key: string) => {
export const getProcessDefinition = async (id?: string, key?: string) => {
return await request.get({
url: '/bpm/process-definition/get',
params: { id, key }