Commit d7a14c11 authored by 皮倩雯's avatar 皮倩雯

fix: '修复gis范围选择显示bug'

parent 6a294d3a
Pipeline #62103 failed with stages
...@@ -346,7 +346,7 @@ const NodeEdit = props => { ...@@ -346,7 +346,7 @@ const NodeEdit = props => {
</div> </div>
</Form.Item> </Form.Item>
<Form.Item label="工单主表" name="TableName"> <Form.Item label="工单主表" name="TableName">
<Select placeholder="请选择工单主表" onChange={changTable}> <Select placeholder="请选择工单主表" onChange={changTable} showSearch>
{eventTable.map(item => ( {eventTable.map(item => (
<Option value={item.Name} key={item.ID}> <Option value={item.Name} key={item.ID}>
{item.Name} {item.Name}
......
...@@ -1012,9 +1012,7 @@ const Map = props => { ...@@ -1012,9 +1012,7 @@ const Map = props => {
<Radio value={1}>手绘区域</Radio> <Radio value={1}>手绘区域</Radio>
</Radio.Group> </Radio.Group>
</Form.Item> </Form.Item>
{radio1 == 0 ? ( {radio1 === 1 && (
<span />
) : (
<> <>
<Form.Item label="手绘区域" name="customPointExtent"> <Form.Item label="手绘区域" name="customPointExtent">
{butState && ( {butState && (
......
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