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
Commit
15b04146
authored
Jan 22, 2025
by
LesanOuO
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 自动去重枚举变更
parent
051fc134
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
src/utils/constants.ts
+3
-3
src/views/bpm/model/form/ExtraSettings.vue
+3
-3
No files found.
src/utils/constants.ts
View file @
15b04146
...
...
@@ -459,7 +459,7 @@ export const BpmProcessInstanceStatus = {
}
export
const
BpmAutoApproveType
=
{
NONE
:
1
,
// 不自动通过
APPROVE_ALL
:
2
,
// 仅审批一次,后续重复的审批节点均自动通过
APPROVE_SEQUENT
:
3
,
// 仅针对连续审批的节点自动通过
NONE
:
0
,
// 不自动通过
APPROVE_ALL
:
1
,
// 仅审批一次,后续重复的审批节点均自动通过
APPROVE_SEQUENT
:
2
,
// 仅针对连续审批的节点自动通过
}
src/views/bpm/model/form/ExtraSettings.vue
View file @
15b04146
...
...
@@ -68,9 +68,9 @@
</div>
<el-radio-group
v-model=
"modelData.autoApprovalType"
>
<div
class=
"flex flex-col"
>
<el-radio
:value=
"
1
"
>
不自动通过
</el-radio>
<el-radio
:value=
"
2
"
>
仅审批一次,后续重复的审批节点均自动通过
</el-radio>
<el-radio
:value=
"
3
"
>
仅针对连续审批的节点自动通过
</el-radio>
<el-radio
:value=
"
0
"
>
不自动通过
</el-radio>
<el-radio
:value=
"
1
"
>
仅审批一次,后续重复的审批节点均自动通过
</el-radio>
<el-radio
:value=
"
2
"
>
仅针对连续审批的节点自动通过
</el-radio>
</div>
</el-radio-group>
</div>
...
...
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