commit | author | age
|
e3ba12
|
1 |
export default { |
Z |
2 |
props: { |
|
3 |
// 内置图标名称,或图片路径,建议绝对路径 |
|
4 |
icon: { |
|
5 |
type: String, |
|
6 |
default: uni.$u.props.empty.icon |
|
7 |
}, |
|
8 |
// 提示文字 |
|
9 |
text: { |
|
10 |
type: String, |
|
11 |
default: uni.$u.props.empty.text |
|
12 |
}, |
|
13 |
// 文字颜色 |
|
14 |
textColor: { |
|
15 |
type: String, |
|
16 |
default: uni.$u.props.empty.textColor |
|
17 |
}, |
|
18 |
// 文字大小 |
|
19 |
textSize: { |
|
20 |
type: [String, Number], |
|
21 |
default: uni.$u.props.empty.textSize |
|
22 |
}, |
|
23 |
// 图标的颜色 |
|
24 |
iconColor: { |
|
25 |
type: String, |
|
26 |
default: uni.$u.props.empty.iconColor |
|
27 |
}, |
|
28 |
// 图标的大小 |
|
29 |
iconSize: { |
|
30 |
type: [String, Number], |
|
31 |
default: uni.$u.props.empty.iconSize |
|
32 |
}, |
|
33 |
// 选择预置的图标类型 |
|
34 |
mode: { |
|
35 |
type: String, |
|
36 |
default: uni.$u.props.empty.mode |
|
37 |
}, |
|
38 |
// 图标宽度,单位px |
|
39 |
width: { |
|
40 |
type: [String, Number], |
|
41 |
default: uni.$u.props.empty.width |
|
42 |
}, |
|
43 |
// 图标高度,单位px |
|
44 |
height: { |
|
45 |
type: [String, Number], |
|
46 |
default: uni.$u.props.empty.height |
|
47 |
}, |
|
48 |
// 是否显示组件 |
|
49 |
show: { |
|
50 |
type: Boolean, |
|
51 |
default: uni.$u.props.empty.show |
|
52 |
}, |
|
53 |
// 组件距离上一个元素之间的距离,默认px单位 |
|
54 |
marginTop: { |
|
55 |
type: [String, Number], |
|
56 |
default: uni.$u.props.empty.marginTop |
|
57 |
} |
|
58 |
} |
|
59 |
} |