|
@@ -173,10 +173,10 @@ const BuildingBasic = React.forwardRef((props, ref) => {
|
173
|
173
|
</Form.Item>
|
174
|
174
|
<FormGroupItem>
|
175
|
175
|
<Form.Item label="文旅商办" help="是否将本项目归纳在【首页-文旅商办】中" {...gourpItemLayout.ab.a}>
|
176
|
|
- {getFieldDecorator('isCommerce')(<Switch />)}
|
|
176
|
+ {getFieldDecorator('isCommerce', { valuePropName: 'checked' })(<Switch />)}
|
177
|
177
|
</Form.Item>
|
178
|
178
|
<Form.Item label="近期开盘" help="本项目是否近期开盘" {...gourpItemLayout.ab.b}>
|
179
|
|
- {getFieldDecorator('isRecentOpening')(<Switch />)}
|
|
179
|
+ {getFieldDecorator('isRecentOpening', { valuePropName: 'checked' })(<Switch />)}
|
180
|
180
|
</Form.Item>
|
181
|
181
|
</FormGroupItem>
|
182
|
182
|
<Form.Item label="列表均价" help="项目列表展示价格,示例:约10000元/㎡、约1000万元/套起">
|