You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/form/demo/coordinated.vue

94 lines
1.8 KiB

7 years ago
<cn>
#### 表单联动
使用 `setFieldsValue` 来动态设置其他控件的值
</cn>
<us>
#### Coordinated Controls
Use `setFieldsValue` to set other control's value programmaticly.
</us>
<template>
<a-form
:form="form"
@submit="handleSubmit"
>
<a-form-item
label="Note"
:label-col="{ span: 5 }"
:wrapper-col="{ span: 12 }"
>
<a-input
v-decorator="[
'note',
{rules: [{ required: true, message: 'Please input your note!' }]}
]"
/>
</a-form-item>
<a-form-item
label="Gender"
:label-col="{ span: 5 }"
:wrapper-col="{ span: 12 }"
>
<a-select
v-decorator="[
'gender',
{rules: [{ required: true, message: 'Please select your gender!' }]}
]"
placeholder="Select a option and change input text above"
@change="handleSelectChange"
>
<a-select-option value="male">
male
</a-select-option>
<a-select-option value="female">
female
</a-select-option>
</a-select>
</a-form-item>
<a-form-item
:wrapper-col="{ span: 12, offset: 5 }"
>
<a-button
type="primary"
html-type="submit"
>
Submit
</a-button>
</a-form-item>
</a-form>
</template>
7 years ago
<script>
export default {
data () {
return {
formLayout: 'horizontal',
form: this.$form.createForm(this),
};
},
7 years ago
methods: {
handleSubmit (e) {
e.preventDefault();
7 years ago
this.form.validateFields((err, values) => {
if (!err) {
console.log('Received values of form: ', values);
7 years ago
}
});
7 years ago
},
handleSelectChange (value) {
console.log(value);
7 years ago
this.form.setFieldsValue({
note: `Hi, ${value === 'male' ? 'man' : 'lady'}!`,
});
7 years ago
},
},
};
7 years ago
</script>
7 years ago