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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
Vue.component("ibiz-card", {
template: `
<div :class="classes">
<div :class="headClasses" v-if="showHead">
<slot name="title">
<p v-if="title">
<Icon v-if="icon" :type="icon"></Icon>
<span>{{title}}</span>
</p>
</slot>
<div :class="extraClasses" v-if="showExtra"><slot name="extra"></slot></div>
<div style="clear: both;"></div>
</div>
<div :class="bodyClasses" :style="bodyStyles"><slot></slot></div>
</div>
`,
props: {
bordered: {
type: Boolean,
default: true
},
disHover: {
type: Boolean,
default: false
},
shadow: {
type: Boolean,
default: false
},
padding: {
type: Number,
default: 16
},
title: {
type: String,
},
icon: {
type: String,
}
},
data: function() {
return {
showHead: true,
showExtra: true,
prefixCls: 'ivu-card'
};
},
computed: {
classes () {
return [
`${this.prefixCls}`,
{
[`${this.prefixCls}-bordered`]: this.bordered && !this.shadow,
[`${this.prefixCls}-dis-hover`]: this.disHover || this.shadow,
[`${this.prefixCls}-shadow`]: this.shadow
}
];
},
headClasses () {
return `ibiz-card-head`;
},
extraClasses () {
return `${this.prefixCls}-extra`;
},
bodyClasses () {
return `${this.prefixCls}-body`;
},
bodyStyles () {
if (this.padding !== 16) {
return {
padding: `${this.padding}px`
};
} else {
return '';
}
}
},
mounted () {
this.showHead = this.title || this.$slots.title !== undefined;
this.showExtra = this.$slots.extra !== undefined;
}
});