commit | author | age
|
e3ba12
|
1 |
export default { |
Z |
2 |
props: { |
|
3 |
// 是否显示组件 |
|
4 |
show: { |
|
5 |
type: Boolean, |
|
6 |
default: uni.$u.props.loadingIcon.show |
|
7 |
}, |
|
8 |
// 颜色 |
|
9 |
color: { |
|
10 |
type: String, |
|
11 |
default: uni.$u.props.loadingIcon.color |
|
12 |
}, |
|
13 |
// 提示文字颜色 |
|
14 |
textColor: { |
|
15 |
type: String, |
|
16 |
default: uni.$u.props.loadingIcon.textColor |
|
17 |
}, |
|
18 |
// 文字和图标是否垂直排列 |
|
19 |
vertical: { |
|
20 |
type: Boolean, |
|
21 |
default: uni.$u.props.loadingIcon.vertical |
|
22 |
}, |
|
23 |
// 模式选择,circle-圆形,spinner-花朵形,semicircle-半圆形 |
|
24 |
mode: { |
|
25 |
type: String, |
|
26 |
default: uni.$u.props.loadingIcon.mode |
|
27 |
}, |
|
28 |
// 图标大小,单位默认px |
|
29 |
size: { |
|
30 |
type: [String, Number], |
|
31 |
default: uni.$u.props.loadingIcon.size |
|
32 |
}, |
|
33 |
// 文字大小 |
|
34 |
textSize: { |
|
35 |
type: [String, Number], |
|
36 |
default: uni.$u.props.loadingIcon.textSize |
|
37 |
}, |
|
38 |
// 文字内容 |
|
39 |
text: { |
|
40 |
type: [String, Number], |
|
41 |
default: uni.$u.props.loadingIcon.text |
|
42 |
}, |
|
43 |
// 动画模式 |
|
44 |
timingFunction: { |
|
45 |
type: String, |
|
46 |
default: uni.$u.props.loadingIcon.timingFunction |
|
47 |
}, |
|
48 |
// 动画执行周期时间 |
|
49 |
duration: { |
|
50 |
type: [String, Number], |
|
51 |
default: uni.$u.props.loadingIcon.duration |
|
52 |
}, |
|
53 |
// mode=circle时的暗边颜色 |
|
54 |
inactiveColor: { |
|
55 |
type: String, |
|
56 |
default: uni.$u.props.loadingIcon.inactiveColor |
|
57 |
} |
|
58 |
} |
|
59 |
} |