dykj-football/uni_modules/uview-plus/components/u-loading-icon/props.js
2024-04-17 15:27:43 +08:00

61 lines
1.7 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import defProps from '../../libs/config/props.js';
export default {
props: {
// 是否显示组件
show: {
type: Boolean,
default: () => defProps.loadingIcon.show
},
// 颜色
color: {
type: String,
default: () => defProps.loadingIcon.color
},
// 提示文字颜色
textColor: {
type: String,
default: () => defProps.loadingIcon.textColor
},
// 文字和图标是否垂直排列
vertical: {
type: Boolean,
default: () => defProps.loadingIcon.vertical
},
// 模式选择circle-圆形spinner-花朵形semicircle-半圆形
mode: {
type: String,
default: () => defProps.loadingIcon.mode
},
// 图标大小单位默认px
size: {
type: [String, Number],
default: () => defProps.loadingIcon.size
},
// 文字大小
textSize: {
type: [String, Number],
default: () => defProps.loadingIcon.textSize
},
// 文字内容
text: {
type: [String, Number],
default: () => defProps.loadingIcon.text
},
// 动画模式
timingFunction: {
type: String,
default: () => defProps.loadingIcon.timingFunction
},
// 动画执行周期时间
duration: {
type: [String, Number],
default: () => defProps.loadingIcon.duration
},
// mode=circle时的暗边颜色
inactiveColor: {
type: String,
default: () => defProps.loadingIcon.inactiveColor
}
}
}