|
@@ -149,11 +149,14 @@ const BuildingBasic = React.forwardRef((props, ref) => {
|
149
|
149
|
rules: [{ required: true, message: '请选择项目类型' }],
|
150
|
150
|
})(<BuildingType />)}
|
151
|
151
|
</Form.Item>
|
152
|
|
- <Form.Item label="是否文旅商办" help="是否将本项目归纳在【首页-文旅商办】中">
|
153
|
|
- {getFieldDecorator('isCommerce', {
|
154
|
|
- rules: [{ required: true, message: '请选择项目类型' }],
|
155
|
|
- })(<Switch />)}
|
156
|
|
- </Form.Item>
|
|
152
|
+ <FormGroupItem>
|
|
153
|
+ <Form.Item label="文旅商办" help="是否将本项目归纳在【首页-文旅商办】中">
|
|
154
|
+ {getFieldDecorator('isCommerce')(<Switch />)}
|
|
155
|
+ </Form.Item>
|
|
156
|
+ <Form.Item label="近期开盘" help="本项目是否近期开盘">
|
|
157
|
+ {getFieldDecorator('isRecentOpening')(<Switch />)}
|
|
158
|
+ </Form.Item>
|
|
159
|
+ </FormGroupItem>
|
157
|
160
|
<Form.Item label="列表均价" help="项目列表展示价格,示例:约10000元/㎡、约1000万元/套起">
|
158
|
161
|
{getFieldDecorator('price')(<Input />)}
|
159
|
162
|
</Form.Item>
|