bpm:完善流程分配任务的弹窗

This commit is contained in:
YunaiV
2023-01-21 18:58:48 +08:00
parent 051f4b85b7
commit 8992f64eb4
5 changed files with 159 additions and 91 deletions

View File

@ -1,5 +1,14 @@
import request from '@/config/axios'
import { TaskAssignVO } from './types'
export type TaskAssignVO = {
id: number
modelId: string
processDefinitionId: string
taskDefinitionKey: string
taskDefinitionName: string
options: string[]
type: number
}
export const getTaskAssignRuleList = async (params) => {
return await request.get({ url: '/bpm/task-assign-rule/list', params })