Commit d4a06615 authored by 彭俊龙's avatar 彭俊龙

feat:事件编辑自动处理站点样式优化

parent 3b65d45c
Pipeline #96995 failed with stages
...@@ -1793,13 +1793,36 @@ const AddModal = props => { ...@@ -1793,13 +1793,36 @@ const AddModal = props => {
</Item> </Item>
</div> </div>
<Col span={24}> <Col span={24}>
<div style={{ display: 'inline-block', marginLeft: '112px', marginRight: '50px' }}> <Item
<Item name="IsAutoWriteInSite"> name="IsAutoWriteInSite"
<Checkbox label={
onChange={e => reportChange({ IsAutoWriteInSite: e.target.checked })} <div style={{ display: 'flex', alignItems: 'center' }}>
checked={reportType.IsAutoWriteInSite}>是否自动写入处理站点</Checkbox> <Tooltip
</Item> title={
</div> <div>
开启后发起事件流程时,系统会取当前用户的第一个站点做为处理站点,如果表单上已经选择了处理站点,则系统不会处理
</div>
}
>
<InfoCircleOutlined
style={{
color: '#1890ff',
marginRight: '2px',
}}
/>
</Tooltip>
<span>内置处理站点</span>
</div>
}
labelCol={{ span: 5 }}
>
<Switch
checkedChildren="开启"
unCheckedChildren="关闭"
checked={reportType.IsAutoWriteInSite}
onChange={value => reportChange({ IsAutoWriteInSite: value })}
/>
</Item>
</Col> </Col>
{value === 0 ? ( {value === 0 ? (
<Col span={24}> <Col span={24}>
......
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