Commit a7d0b044 authored by 涂伟's avatar 涂伟

fix: '工单移交方式新增跨站移交默认人'

parent 07f988f7
......@@ -257,8 +257,8 @@ const ConfigNodeMsg = (props, ref) => {
{nodeMsg.NodeType === '20' || nodeMsg.NodeType === '21' || nodeMsg.NodeType === '22'
? '网关'
: nodeMsg.NodeType === '30'
? `子流程`
: `节点`}
? `子流程`
: `节点`}
信息
</Divider>
<div className={styles.titleBox}>
......@@ -290,13 +290,12 @@ const ConfigNodeMsg = (props, ref) => {
</Form.Item> */}
{/* 第一次填写显示,如果是网关、子节点一直显示 */}
<Form.Item
label={`${
nodeMsg.NodeType === '20' || nodeMsg.NodeType === '21' || nodeMsg.NodeType === '22'
label={`${nodeMsg.NodeType === '20' || nodeMsg.NodeType === '21' || nodeMsg.NodeType === '22'
? '网关'
: nodeMsg.NodeType === '30'
? `流程`
: '节点'
}名称`}
? `流程`
: '节点'
}名称`}
name="NodeName"
rules={[{ required: true, message: '请输入名称' }]}
>
......@@ -308,11 +307,10 @@ const ConfigNodeMsg = (props, ref) => {
nodeMsg.NodeType !== '22' &&
nodeMsg.NodeType !== '30'
}
placeholder={`请输入${
nodeMsg.NodeType === '20' || nodeMsg.NodeType === '21' || nodeMsg.NodeType === '22'
placeholder={`请输入${nodeMsg.NodeType === '20' || nodeMsg.NodeType === '21' || nodeMsg.NodeType === '22'
? '网关'
: '节点'
}名称`}
}名称`}
/>
</Form.Item>
......@@ -329,9 +327,9 @@ const ConfigNodeMsg = (props, ref) => {
style={{
display:
editMsg.NodeType === '20' ||
editMsg.NodeType === '21' ||
editMsg.NodeType === '22' ||
editMsg.NodeType === '30'
editMsg.NodeType === '21' ||
editMsg.NodeType === '22' ||
editMsg.NodeType === '30'
? 'none'
: 'block',
}}
......@@ -377,7 +375,7 @@ const ConfigNodeMsg = (props, ref) => {
<Radio value="移交默认人">
<div style={{ display: 'flex', alignItems: 'center' }}>
移交默认人
<Tooltip title="自动移交给权限配置中的默认承办人">
<Tooltip title="自动移交给权限配置中的默认承办人,不支持跨站点移交">
<InfoCircleOutlined style={{ color: '#1890ff', marginLeft: '3px' }} />
</Tooltip>
</div>
......@@ -401,9 +399,17 @@ const ConfigNodeMsg = (props, ref) => {
</Tooltip>
</div>
</Radio>
<Radio value="跨站移交默认人">
<div style={{ display: 'flex', alignItems: 'center' }}>
跨站移交默认人
<Tooltip title="会忽略当前处理站点,自动移交给权限配置中的默认承办人">
<InfoCircleOutlined style={{ color: '#1890ff', marginLeft: '3px' }} />
</Tooltip>
</div>
</Radio>
<Radio value="移交部门主管">
<div style={{ display: 'flex', alignItems: 'center' }}>
移交部门主管
移交部门主管
<Tooltip title="自动移交到当前处理人的部门主管">
<InfoCircleOutlined style={{ color: '#1890ff', marginLeft: '3px' }} />
</Tooltip>
......@@ -496,11 +502,11 @@ const ConfigNodeMsg = (props, ref) => {
style={{
display:
editMsg.NodeType === '1' ||
editMsg.NodeType === '2' ||
editMsg.NodeType === '20' ||
editMsg.NodeType === '21' ||
editMsg.NodeType === '22' ||
editMsg.NodeType === '30'
editMsg.NodeType === '2' ||
editMsg.NodeType === '20' ||
editMsg.NodeType === '21' ||
editMsg.NodeType === '22' ||
editMsg.NodeType === '30'
? 'none'
: 'block',
}}
......
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