Commit 937c79b3 authored by 皮倩雯's avatar 皮倩雯

fix: '节点配置增加暂存配置'

parent 22267bd5
Pipeline #64054 passed with stages
...@@ -3649,14 +3649,14 @@ const AddModal = props => { ...@@ -3649,14 +3649,14 @@ const AddModal = props => {
return ( return (
<> <>
<Row> <Row>
<Col span={16}> <Col span={12}>
<Item <Item
label="台账名" label="台账名"
name="standingBook" name="standingBook"
labelCol={{ span: 6 }} labelCol={{ span: 8}}
rules={[{ required: true, message: '请选择台账名' }]} rules={[{ required: true, message: '请选择台账名' }]}
> >
<Select showSearch style={{ width: '95%' }}> <Select showSearch style={{ width: '110%' }}>
{keepStandingBook {keepStandingBook
? keepStandingBook.map((item, index) => ( ? keepStandingBook.map((item, index) => (
<Option key={index} value={item.name}> <Option key={index} value={item.name}>
...@@ -3667,14 +3667,14 @@ const AddModal = props => { ...@@ -3667,14 +3667,14 @@ const AddModal = props => {
</Select> </Select>
</Item> </Item>
</Col> </Col>
<Col span={8}> <Col span={12}>
<Item <Item
label="字段名" label="字段名"
name="fieldName" name="fieldName"
labelCol={{ span: 8 }} labelCol={{ span: 8}}
rules={[{ required: true, message: '请输入字段名' }]} rules={[{ required: true, message: '请输入字段名' }]}
> >
<Input placeholder="请输入字段名" /> <Input placeholder="台账表中字段用于数据回显" />
</Item> </Item>
</Col> </Col>
</Row> </Row>
......
...@@ -1541,8 +1541,8 @@ const AddModal = props => { ...@@ -1541,8 +1541,8 @@ const AddModal = props => {
<Col span={24}> <Col span={24}>
<Item label="上报方式" name="CreateMode" labelCol={{ span: 5 }}> <Item label="上报方式" name="CreateMode" labelCol={{ span: 5 }}>
<Radio.Group onChange={onChange2} value={value} defaultValue={chee}> <Radio.Group onChange={onChange2} value={value} defaultValue={chee}>
<Radio value={0}>仅上报(事件模型)</Radio>
<Radio value={1}>立即发起(工单模型)</Radio> <Radio value={1}>立即发起(工单模型)</Radio>
<Radio value={0}>仅上报(事件模型)</Radio>
</Radio.Group> </Radio.Group>
</Item> </Item>
</Col> </Col>
......
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