改造审批设置. 整合系统中的任务的候选人策略

This commit is contained in:
jason
2024-03-24 20:35:53 +08:00
parent ee12e691be
commit 4c4d13cdd0
7 changed files with 538 additions and 74 deletions

View File

@ -14,7 +14,8 @@ export const useWorkFlowStore = defineStore('simpleWorkflow', {
conditionDrawer: false,
conditionsConfig1: {
conditionNodes: []
}
},
userTaskConfig: {}
}),
actions: {
setTableId(payload) {
@ -46,6 +47,9 @@ export const useWorkFlowStore = defineStore('simpleWorkflow', {
},
setConditionsConfig(payload) {
this.conditionsConfig1 = payload
},
setUserTaskConfig(payload) {
this.userTaskConfig = payload
}
}
})