Skip to content

Commit 96f3a5c

Browse files
committed
add FlowSessionBeanRegister
1 parent 5d1458e commit 96f3a5c

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

admin-ui/src/components/Flow/view/FlowView.tsx

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ const FlowView: React.FC<FlowViewProps> = (props) => {
8585
postponed(body).then(res => {
8686
if (res.success) {
8787
message.success('已经延期').then();
88-
setPostponedVisible(false)
88+
setPostponedVisible(false);
8989
}
9090
})
9191
}
@@ -208,13 +208,6 @@ const FlowView: React.FC<FlowViewProps> = (props) => {
208208
>
209209
<Row justify="end">
210210
<Space>
211-
{props.review && (
212-
<Button
213-
type={"primary"}
214-
danger={true}
215-
>干预</Button>
216-
)}
217-
218211
{!props.review && (
219212
<Button
220213
onClick={() => {
@@ -476,7 +469,7 @@ const FlowView: React.FC<FlowViewProps> = (props) => {
476469

477470

478471
<ModalForm
479-
title={"延期人员选择"}
472+
title={"转办人员选择"}
480473
form={transferForm}
481474
open={transferVisible}
482475
modalProps={{
@@ -489,6 +482,7 @@ const FlowView: React.FC<FlowViewProps> = (props) => {
489482
}}
490483
onFinish={async (values) => {
491484
handlerTransferFlow(values);
485+
setTransferVisible(false);
492486
}}
493487
>
494488

0 commit comments

Comments
 (0)