Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
admin
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Unverified
Commit
77a0801a
authored
Mar 12, 2025
by
芋道源码
Committed by
Gitee
Mar 12, 2025
Browse files
Options
Browse Files
Download
Plain Diff
!727 fix:simple设计器缺少“审批人自选“条件
Merge pull request !727 from SamllNorth_Lee/feature/bpm
parents
0e452aa1
1d17c18f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
src/api/bpm/model/index.ts
+0
-1
src/components/SimpleProcessDesignerV2/src/node.ts
+5
-0
No files found.
src/api/bpm/model/index.ts
View file @
77a0801a
...
@@ -31,7 +31,6 @@ export const getModelList = async (name: string | undefined) => {
...
@@ -31,7 +31,6 @@ export const getModelList = async (name: string | undefined) => {
}
}
export
const
getModel
=
async
(
id
:
string
)
=>
{
export
const
getModel
=
async
(
id
:
string
)
=>
{
debugger
return
await
request
.
get
({
url
:
'/bpm/model/get?id='
+
id
})
return
await
request
.
get
({
url
:
'/bpm/model/get?id='
+
id
})
}
}
...
...
src/components/SimpleProcessDesignerV2/src/node.ts
View file @
77a0801a
...
@@ -310,6 +310,11 @@ export function useNodeForm(nodeType: NodeType) {
...
@@ -310,6 +310,11 @@ export function useNodeForm(nodeType: NodeType) {
showText = `
表单内部门负责人
`
showText = `
表单内部门负责人
`
}
}
// 审批人自选
if (configForm.value?.candidateStrategy === CandidateStrategy.APPROVE_USER_SELECT) {
showText = `
审批人自选
`
}
// 发起人自选
// 发起人自选
if (configForm.value?.candidateStrategy === CandidateStrategy.START_USER_SELECT) {
if (configForm.value?.candidateStrategy === CandidateStrategy.START_USER_SELECT) {
showText = `
发起人自选
`
showText = `
发起人自选
`
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment