Commit b22853b7 authored by 田翔's avatar 田翔

fix: 子流程增加台账数据回填

parent 5aec233b
Pipeline #92485 failed with stages
......@@ -372,7 +372,7 @@ const FlowChart = props => {
ExtendPageList: [],
FlowNodeBackfillConfigs: [],
FlowTimerList: [],
TurnOnCc: 1,
TurnOnCc: 0,
NodeAliasName: '',
Handover: '移交选择人',
TableName: '',
......@@ -381,7 +381,7 @@ const FlowChart = props => {
FeedbackName: '',
Transferable: 0,
EventsInformation: 0,
IsSendMessage: 1,
IsSendMessage: 0,
IsSave: 0,
AutoClose: '否',
HalfwayClose: 0,
......
......@@ -172,16 +172,7 @@ const NodeModal = props => {
</div>
</div>
<div
style={{
display:
activeConfig !== '高级配置' ||
editMsg.NodeType === '20' ||
editMsg.NodeType === '21' ||
editMsg.NodeType === '22' ||
editMsg.NodeType === '30'
? 'none'
: 'block',
}}
style={{ display: activeConfig !== '高级配置' || ['20', '21', '22', '30'].includes(editMsg.NodeType) ? 'none' : 'block' }}
>
{/* 时限配置 */}
<ConfigTimeLimit
......@@ -271,12 +262,20 @@ const NodeModal = props => {
</div>
{/* 子流程配置 */}
{editMsg.NodeType === '30' && (
<ConfigSubprocess
ref={refConfigSubprocess}
editMsg={editMsg}
flowID={flowID}
nodeChage={nodeChage}
/>
<>
<ConfigSubprocess
ref={refConfigSubprocess}
editMsg={editMsg}
flowID={flowID}
nodeChage={nodeChage}
/>
<ConfigAccount
ref={refConfigAccount}
nodeChage={nodeChage}
editMsg={editMsg}
flowID={flowID}
/>
</>
)}
{/* 网关规则配置 */}
<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 to comment