form-item.vue
748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<template>
<div class="form-item">
<slot></slot>
</div>
</template>
<script>
export default {
name: 'FormItem',
props: {
model: {
type: String
}
},
data() {
return {
items: []
};
},
methods: {
validate() {
let result = true;
this.items.forEach(i => {
if (!i.validate()) {
result = false;
}
});
return result;
},
getItem() {
this.items = this.$children.filter(i => i.$options.name === 'CUpload' || i.$options.name === 'CInput' || i.$options.name === 'CDatePick');
}
},
mounted() {
this.getItem();
}
};
</script>
<style lang="scss" scoped>
.form-item {
border-bottom: 2px solid #eee;
padding: 30px 0;
}
</style>