From bd99a5211f3a5fcaa051e5da868d87bb870148f5 Mon Sep 17 00:00:00 2001 From: quanyawei <401863037@qq.com> Date: Fri, 01 Mar 2024 09:58:45 +0800 Subject: [PATCH] fix:手持设备 --- uni_modules/uview-ui/components/u-avatar-group/props.js | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 52 insertions(+), 0 deletions(-) diff --git a/uni_modules/uview-ui/components/u-avatar-group/props.js b/uni_modules/uview-ui/components/u-avatar-group/props.js new file mode 100644 index 0000000..58b42ac --- /dev/null +++ b/uni_modules/uview-ui/components/u-avatar-group/props.js @@ -0,0 +1,52 @@ +export default { + props: { + // ��������������� + urls: { + type: Array, + default: uni.$u.props.avatarGroup.urls + }, + // ��������������������������� + maxCount: { + type: [String, Number], + default: uni.$u.props.avatarGroup.maxCount + }, + // ������������ + shape: { + type: String, + default: uni.$u.props.avatarGroup.shape + }, + // ������������������ + mode: { + type: String, + default: uni.$u.props.avatarGroup.mode + }, + // ������maxCount������������������������������������ + showMore: { + type: Boolean, + default: uni.$u.props.avatarGroup.showMore + }, + // ������������ + size: { + type: [String, Number], + default: uni.$u.props.avatarGroup.size + }, + // ��������������������������������������������������������������������� + keyName: { + type: String, + default: uni.$u.props.avatarGroup.keyName + }, + // ��������������������������� + gap: { + type: [String, Number], + validator(value) { + return value >= 0 && value <= 1 + }, + default: uni.$u.props.avatarGroup.gap + }, + // ��������������������� + extraValue: { + type: [Number, String], + default: uni.$u.props.avatarGroup.extraValue + } + } +} -- Gitblit v1.8.0