Commit 1a46af08 authored by FE-安焕焕's avatar FE-安焕焕 👣

增加占位符

parent 7978af77
...@@ -221,7 +221,7 @@ const AddressForm = props => { ...@@ -221,7 +221,7 @@ const AddressForm = props => {
message: '请输入详情地址!', message: '请输入详情地址!',
}, },
], ],
})(<Input />)} })(<Input placeholder="请输入详情地址" />)}
</FormItem> </FormItem>
<FormItem label="联系人姓名"> <FormItem label="联系人姓名">
{getFieldDecorator('receiverName', { {getFieldDecorator('receiverName', {
...@@ -232,7 +232,7 @@ const AddressForm = props => { ...@@ -232,7 +232,7 @@ const AddressForm = props => {
message: '请输入联系人姓名!', message: '请输入联系人姓名!',
}, },
], ],
})(<Input />)} })(<Input placeholder="请输入联系人姓名" />)}
</FormItem> </FormItem>
<FormItem label="联系人电话"> <FormItem label="联系人电话">
{getFieldDecorator('receiverTel', { {getFieldDecorator('receiverTel', {
...@@ -243,12 +243,12 @@ const AddressForm = props => { ...@@ -243,12 +243,12 @@ const AddressForm = props => {
message: '请输入联系人电话!', message: '请输入联系人电话!',
}, },
], ],
})(<Input />)} })(<Input placeholder="请输入联系人电视" />)}
</FormItem> </FormItem>
<FormItem label="备注"> <FormItem label="备注">
{getFieldDecorator('remark', { {getFieldDecorator('remark', {
initialValue: formData.remark, initialValue: formData.remark,
})(<Input />)} })(<Input placeholder="请输入备注" />)}
</FormItem> </FormItem>
</Form> </Form>
</Modal> </Modal>
......
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