@@ -96,7 +96,6 @@ export interface SimpleFlowNode {
96
96
conditionGroups ?: ConditionGroup
97
97
// 是否默认的条件
98
98
defaultFlow ?: boolean
99
-
100
99
}
101
100
// 候选人策略枚举 ( 用于审批节点。抄送节点 )
102
101
export enum CandidateStrategy {
@@ -514,10 +513,10 @@ OPERATION_BUTTON_NAME.set(OperationButtonType.COPY, '抄送')
514
513
export const DEFAULT_BUTTON_SETTING : ButtonSetting [ ] = [
515
514
{ id : OperationButtonType . APPROVE , displayName : '通过' , enable : true } ,
516
515
{ id : OperationButtonType . REJECT , displayName : '拒绝' , enable : true } ,
517
- { id : OperationButtonType . TRANSFER , displayName : '转办' , enable : false } ,
518
- { id : OperationButtonType . DELEGATE , displayName : '委派' , enable : false } ,
519
- { id : OperationButtonType . ADD_SIGN , displayName : '加签' , enable : false } ,
520
- { id : OperationButtonType . RETURN , displayName : '回退' , enable : false }
516
+ { id : OperationButtonType . TRANSFER , displayName : '转办' , enable : true } ,
517
+ { id : OperationButtonType . DELEGATE , displayName : '委派' , enable : true } ,
518
+ { id : OperationButtonType . ADD_SIGN , displayName : '加签' , enable : true } ,
519
+ { id : OperationButtonType . RETURN , displayName : '回退' , enable : true }
521
520
]
522
521
523
522
// 发起人的按钮权限。暂时定死,不可以编辑
0 commit comments