Commit b22853b7 authored by 田翔's avatar 田翔

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

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