File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed
admin-ui/src/components/Flow/view Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ const FlowView: React.FC<FlowViewProps> = (props) => {
85
85
postponed ( body ) . then ( res => {
86
86
if ( res . success ) {
87
87
message . success ( '已经延期' ) . then ( ) ;
88
- setPostponedVisible ( false )
88
+ setPostponedVisible ( false ) ;
89
89
}
90
90
} )
91
91
}
@@ -208,13 +208,6 @@ const FlowView: React.FC<FlowViewProps> = (props) => {
208
208
>
209
209
< Row justify = "end" >
210
210
< Space >
211
- { props . review && (
212
- < Button
213
- type = { "primary" }
214
- danger = { true }
215
- > 干预</ Button >
216
- ) }
217
-
218
211
{ ! props . review && (
219
212
< Button
220
213
onClick = { ( ) => {
@@ -476,7 +469,7 @@ const FlowView: React.FC<FlowViewProps> = (props) => {
476
469
477
470
478
471
< ModalForm
479
- title = { "延期人员选择 " }
472
+ title = { "转办人员选择 " }
480
473
form = { transferForm }
481
474
open = { transferVisible }
482
475
modalProps = { {
@@ -489,6 +482,7 @@ const FlowView: React.FC<FlowViewProps> = (props) => {
489
482
} }
490
483
onFinish = { async ( values ) => {
491
484
handlerTransferFlow ( values ) ;
485
+ setTransferVisible ( false ) ;
492
486
} }
493
487
>
494
488
You can’t perform that action at this time.
0 commit comments