style: prettier code
parent
754c220eab
commit
67c31867d2
|
@ -149,8 +149,8 @@ const Form = {
|
||||||
this.$forceUpdate();
|
this.$forceUpdate();
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
updated(){
|
updated() {
|
||||||
if(this.autoFormCreate || this.form) {
|
if (this.autoFormCreate || this.form) {
|
||||||
this.form.cleanUpUselessFields();
|
this.form.cleanUpUselessFields();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -31,7 +31,7 @@ describe('Form', () => {
|
||||||
const wrapper = mount(Form1, {
|
const wrapper = mount(Form1, {
|
||||||
sync: false,
|
sync: false,
|
||||||
});
|
});
|
||||||
await asyncExpect(()=>{
|
await asyncExpect(() => {
|
||||||
myForm.validateFields();
|
myForm.validateFields();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -235,15 +235,15 @@ const Form4 = {
|
||||||
<h2>situation 4</h2>
|
<h2>situation 4</h2>
|
||||||
{this.useInput
|
{this.useInput
|
||||||
? getFieldDecorator('name', {
|
? getFieldDecorator('name', {
|
||||||
initialValue: '',
|
initialValue: '',
|
||||||
trigger: 'input',
|
trigger: 'input',
|
||||||
rules: [
|
rules: [
|
||||||
{
|
{
|
||||||
required: true,
|
required: true,
|
||||||
message: "What's your name 1?",
|
message: "What's your name 1?",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
})(<input />)
|
})(<input />)
|
||||||
: getFieldDecorator('name2', {
|
: getFieldDecorator('name2', {
|
||||||
initialValue: '',
|
initialValue: '',
|
||||||
trigger: 'input',
|
trigger: 'input',
|
||||||
|
|
|
@ -632,7 +632,7 @@ function createBaseForm(option = {}, mixins = []) {
|
||||||
const formProps = {
|
const formProps = {
|
||||||
[formPropName]: this.getForm(),
|
[formPropName]: this.getForm(),
|
||||||
};
|
};
|
||||||
const {wrappedComponentRef, ...restProps} = getOptionProps(this);
|
const { wrappedComponentRef, ...restProps } = getOptionProps(this);
|
||||||
const wrappedComponentProps = {
|
const wrappedComponentProps = {
|
||||||
props: mapProps.call(this, {
|
props: mapProps.call(this, {
|
||||||
...formProps,
|
...formProps,
|
||||||
|
|
Loading…
Reference in New Issue