mirror of https://github.com/ElemeFE/element
95 lines
2.3 KiB
Vue
95 lines
2.3 KiB
Vue
<template>
|
||
<form class="el-form" :class="[
|
||
labelPosition ? 'el-form--label-' + labelPosition : '',
|
||
{ 'el-form--inline': inline }
|
||
]">
|
||
<slot></slot>
|
||
</form>
|
||
</template>
|
||
<script>
|
||
export default {
|
||
name: 'ElForm',
|
||
|
||
componentName: 'ElForm',
|
||
|
||
props: {
|
||
model: Object,
|
||
rules: Object,
|
||
labelPosition: String,
|
||
labelWidth: String,
|
||
labelSuffix: {
|
||
type: String,
|
||
default: ''
|
||
},
|
||
inline: Boolean,
|
||
showMessage: {
|
||
type: Boolean,
|
||
default: true
|
||
}
|
||
},
|
||
watch: {
|
||
rules() {
|
||
this.validate();
|
||
}
|
||
},
|
||
data() {
|
||
return {
|
||
fields: []
|
||
};
|
||
},
|
||
created() {
|
||
this.$on('el.form.addField', (field) => {
|
||
if (field) {
|
||
this.fields.push(field);
|
||
}
|
||
});
|
||
/* istanbul ignore next */
|
||
this.$on('el.form.removeField', (field) => {
|
||
if (field.prop) {
|
||
this.fields.splice(this.fields.indexOf(field), 1);
|
||
}
|
||
});
|
||
},
|
||
methods: {
|
||
resetFields() {
|
||
if (!this.model) {
|
||
process.env.NODE_ENV !== 'production' &&
|
||
console.warn('[Element Warn][Form]model is required for resetFields to work.');
|
||
return;
|
||
}
|
||
this.fields.forEach(field => {
|
||
field.resetField();
|
||
});
|
||
},
|
||
validate(callback) {
|
||
if (!this.model) {
|
||
console.warn('[Element Warn][Form]model is required for validate to work!');
|
||
return;
|
||
};
|
||
let valid = true;
|
||
let count = 0;
|
||
// 如果需要验证的fields为空,调用验证时立刻返回callback
|
||
if (this.fields.length === 0 && callback) {
|
||
callback(true);
|
||
}
|
||
this.fields.forEach((field, index) => {
|
||
field.validate('', errors => {
|
||
if (errors) {
|
||
valid = false;
|
||
}
|
||
if (typeof callback === 'function' && ++count === this.fields.length) {
|
||
callback(valid);
|
||
}
|
||
});
|
||
});
|
||
},
|
||
validateField(prop, cb) {
|
||
var field = this.fields.filter(field => field.prop === prop)[0];
|
||
if (!field) { throw new Error('must call validateField with valid prop string!'); }
|
||
|
||
field.validate('', cb);
|
||
}
|
||
}
|
||
};
|
||
</script>
|