Commit c435e2c9 by 芋道源码 Committed by Gitee

!674 BPM:更多设置-自动去重

Merge pull request !674 from Lesan/feature/bpm-自动去重
parents b6069303 15b04146
...@@ -459,7 +459,7 @@ export const BpmProcessInstanceStatus = { ...@@ -459,7 +459,7 @@ export const BpmProcessInstanceStatus = {
} }
export const BpmAutoApproveType = { export const BpmAutoApproveType = {
NONE: 1, // 不自动通过 NONE: 0, // 不自动通过
APPROVE_ALL: 2, // 仅审批一次,后续重复的审批节点均自动通过 APPROVE_ALL: 1, // 仅审批一次,后续重复的审批节点均自动通过
APPROVE_SEQUENT: 3, // 仅针对连续审批的节点自动通过 APPROVE_SEQUENT: 2, // 仅针对连续审批的节点自动通过
} }
...@@ -68,9 +68,9 @@ ...@@ -68,9 +68,9 @@
</div> </div>
<el-radio-group v-model="modelData.autoApprovalType"> <el-radio-group v-model="modelData.autoApprovalType">
<div class="flex flex-col"> <div class="flex flex-col">
<el-radio :value="1">不自动通过</el-radio> <el-radio :value="0">不自动通过</el-radio>
<el-radio :value="2">仅审批一次,后续重复的审批节点均自动通过</el-radio> <el-radio :value="1">仅审批一次,后续重复的审批节点均自动通过</el-radio>
<el-radio :value="3">仅针对连续审批的节点自动通过</el-radio> <el-radio :value="2">仅针对连续审批的节点自动通过</el-radio>
</div> </div>
</el-radio-group> </el-radio-group>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment