|
@@ -97,6 +97,12 @@ function body(props) {
|
97
|
97
|
e.preventDefault();
|
98
|
98
|
props.form.validateFields((err, values) => {
|
99
|
99
|
if (!err) {
|
|
100
|
+ if (values.startCreateDate){
|
|
101
|
+ values.startCreateDate = moment(values.startCreateDate).format('YYYY-MM-DD HH:mm:ss');
|
|
102
|
+ }
|
|
103
|
+ if (values.endCreateDate){
|
|
104
|
+ values.endCreateDate = moment(values.endCreateDate).format('YYYY-MM-DD HH:mm:ss');
|
|
105
|
+ }
|
100
|
106
|
getList({ pageNum: 1, pageSize: 10, customerType, ...values })
|
101
|
107
|
}
|
102
|
108
|
});
|
|
@@ -448,6 +454,16 @@ function body(props) {
|
448
|
454
|
<Input placeholder="置业顾问电话" />,
|
449
|
455
|
)}
|
450
|
456
|
</Form.Item>}
|
|
457
|
+ <Form.Item>
|
|
458
|
+ {getFieldDecorator('startCreateDate')(
|
|
459
|
+ <DatePicker showTime={{ format: 'HH:mm:ss' }} placeholder="注册开始时间"/>,
|
|
460
|
+ )}
|
|
461
|
+ </Form.Item>
|
|
462
|
+ <Form.Item>
|
|
463
|
+ {getFieldDecorator('endCreateDate')(
|
|
464
|
+ <DatePicker showTime={{ format: 'HH:mm:ss' }} placeholder="注册结束时间"/>,
|
|
465
|
+ )}
|
|
466
|
+ </Form.Item>
|
451
|
467
|
<Form.Item>
|
452
|
468
|
{getFieldDecorator('sceneType')(
|
453
|
469
|
<WxDictSelect />,
|