|
@@ -180,21 +180,23 @@ const BuildingBasic = React.forwardRef((props, ref) => {
|
180
|
180
|
</Form.Item>
|
181
|
181
|
</FormGroupItem>
|
182
|
182
|
<Form.Item label="列表均价" help="项目列表展示价格,示例:约10000元/㎡、约1000万元/套起">
|
183
|
|
- {getFieldDecorator('price')(<Input />)}
|
|
183
|
+ {getFieldDecorator('price', {
|
|
184
|
+ rules: [{ required: true, message: '请输入列表均价' }],
|
|
185
|
+ })(<Input />)}
|
184
|
186
|
</Form.Item>
|
185
|
187
|
<FormGroupItem>
|
186
|
|
- <Form.Item label="开盘时间" {...gourpItemLayout.ab.a} >
|
|
188
|
+ <Form.Item label="开盘日期" {...gourpItemLayout.ab.a} >
|
187
|
189
|
{getFieldDecorator('openingDate')(
|
188
|
|
- <OpenTimePicker placeholder="请选择开盘时间" style={fullWidth} />
|
|
190
|
+ <OpenTimePicker placeholder="请选择开盘日期" style={fullWidth} />
|
189
|
191
|
)}
|
190
|
192
|
</Form.Item>
|
191
|
193
|
<Form.Item label="电话" {...gourpItemLayout.ab.b } >
|
192
|
194
|
{getFieldDecorator('tel')(<Input placeholder="手机或者座机号码" />)}
|
193
|
195
|
</Form.Item>
|
194
|
196
|
</FormGroupItem>
|
195
|
|
- <Form.Item label="项目说明" >
|
|
197
|
+ {/* <Form.Item label="项目说明" >
|
196
|
198
|
{getFieldDecorator('dynamic')(<Input placeholder="项目标签补充,不超过30个字" maxLength={30}/>)}
|
197
|
|
- </Form.Item>
|
|
199
|
+ </Form.Item> */}
|
198
|
200
|
{/* <Form.Item label="物业类型" >
|
199
|
201
|
{getFieldDecorator('propertyType')(<Input />)}
|
200
|
202
|
</Form.Item> */}
|
|
@@ -212,7 +214,17 @@ const BuildingBasic = React.forwardRef((props, ref) => {
|
212
|
214
|
</Form.Item>
|
213
|
215
|
<Form.Item label="项目标签" >
|
214
|
216
|
{getFieldDecorator('tag')(
|
215
|
|
- <Select mode="tags" placeholder="输入后选中" style={fullWidth} />
|
|
217
|
+ <Select mode='multiple' placeholder="项目标签" style={fullWidth}>
|
|
218
|
+ <Select.Option value="临地铁">临地铁</Select.Option>
|
|
219
|
+ <Select.Option value="改善盘">改善盘</Select.Option>
|
|
220
|
+ <Select.Option value="刚需盘">刚需盘</Select.Option>
|
|
221
|
+ <Select.Option value="配套成熟">配套成熟</Select.Option>
|
|
222
|
+ <Select.Option value="人车分流">人车分流</Select.Option>
|
|
223
|
+ <Select.Option value="康养社区">康养社区</Select.Option>
|
|
224
|
+ <Select.Option value="旅游地产">旅游地产</Select.Option>
|
|
225
|
+ <Select.Option value="品牌房企">品牌房企</Select.Option>
|
|
226
|
+ <Select.Option value="海外地产">海外地产</Select.Option>
|
|
227
|
+ </Select>,
|
216
|
228
|
)}
|
217
|
229
|
</Form.Item>
|
218
|
230
|
|
|
@@ -457,11 +469,11 @@ const BuildingBasic = React.forwardRef((props, ref) => {
|
457
|
469
|
rules: [{ max: 30, message: '不超过30个字' }]
|
458
|
470
|
})(<Input placeholder="不超过30个字" />)}
|
459
|
471
|
</Form.Item>
|
460
|
|
- {/* <Form.Item label="预售许可证" >
|
461
|
|
- {getFieldDecorator('preSalePermit')(
|
462
|
|
- <ImageUpload />,
|
463
|
|
- )}
|
464
|
|
- </Form.Item> */}
|
|
472
|
+ <Form.Item label="预售许可证" >
|
|
473
|
+ {getFieldDecorator('preSalePermit',{
|
|
474
|
+ rules: [{ max: 30, message: '不超过30个字' }]
|
|
475
|
+ })(<Input placeholder="不超过30个字" />)}
|
|
476
|
+ </Form.Item>
|
465
|
477
|
|
466
|
478
|
<Form.Item label=" " colon={false}>
|
467
|
479
|
<AuthButton name="building.detail.save">
|