Commit a7d0b044 authored by 涂伟's avatar 涂伟

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

parent 07f988f7
......@@ -290,8 +290,7 @@ 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'
? `流程`
......@@ -308,8 +307,7 @@ 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'
? '网关'
: '节点'
}名称`}
......@@ -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,6 +399,14 @@ 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' }}>
移交部门主管
......
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