mirror of https://github.com/ElemeFE/element
Form: support nested rules
parent
051b03f4a6
commit
ffc310d98d
|
@ -226,7 +226,7 @@
|
||||||
var selfRules = this.rules;
|
var selfRules = this.rules;
|
||||||
var requiredRule = this.required !== undefined ? { required: !!this.required } : [];
|
var requiredRule = this.required !== undefined ? { required: !!this.required } : [];
|
||||||
|
|
||||||
formRules = formRules ? formRules[this.prop] : [];
|
formRules = formRules ? getPropByPath(formRules, this.prop || '').v : [];
|
||||||
|
|
||||||
return [].concat(selfRules || formRules || []).concat(requiredRule);
|
return [].concat(selfRules || formRules || []).concat(requiredRule);
|
||||||
},
|
},
|
||||||
|
@ -250,6 +250,7 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
console.log(11, this.prop);
|
||||||
if (this.prop) {
|
if (this.prop) {
|
||||||
this.dispatch('ElForm', 'el.form.addField', [this]);
|
this.dispatch('ElForm', 'el.form.addField', [this]);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue