dykj-outsource-12123/uni_modules/uview-plus/components/u-rate/props.js
2024-06-28 14:18:30 +08:00

80 lines
2.2 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: {
// #ifdef VUE3
// 用于v-model双向绑定选中的星星数量
modelValue: {
type: [String, Number],
default: () => defProps.rate.value
},
// #endif
// #ifdef VUE2
// 用于v-model双向绑定选中的星星数量
value: {
type: [String, Number],
default: () => defProps.rate.value
},
// #endif
// 要显示的星星数量
count: {
type: [String, Number],
default: () => defProps.rate.count
},
// 是否不可选中
disabled: {
type: Boolean,
default: () => defProps.rate.disabled
},
// 是否只读
readonly: {
type: Boolean,
default: () => defProps.rate.readonly
},
// 星星的大小单位px
size: {
type: [String, Number],
default: () => defProps.rate.size
},
// 未选中时的颜色
inactiveColor: {
type: String,
default: () => defProps.rate.inactiveColor
},
// 选中的颜色
activeColor: {
type: String,
default: () => defProps.rate.activeColor
},
// 星星之间的间距单位px
gutter: {
type: [String, Number],
default: () => defProps.rate.gutter
},
// 最少能选择的星星个数
minCount: {
type: [String, Number],
default: () => defProps.rate.minCount
},
// 是否允许半星
allowHalf: {
type: Boolean,
default: () => defProps.rate.allowHalf
},
// 选中时的图标(星星)
activeIcon: {
type: String,
default: () => defProps.rate.activeIcon
},
// 未选中时的图标(星星)
inactiveIcon: {
type: String,
default: () => defProps.rate.inactiveIcon
},
// 是否可以通过滑动手势选择评分
touchable: {
type: Boolean,
default: () => defProps.rate.touchable
}
}
}