From 68c5ef7d9fea3f911e250fb5f8b300bc76099e49 Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期四, 26 十月 2023 13:55:49 +0800
Subject: [PATCH] 小程序
---
minipro_standard/uni_modules/uview-ui/components/u-checkbox-group/props.js | 82 +++++++++++++++++++++++++++++++++++++++++
1 files changed, 82 insertions(+), 0 deletions(-)
diff --git a/minipro_standard/uni_modules/uview-ui/components/u-checkbox-group/props.js b/minipro_standard/uni_modules/uview-ui/components/u-checkbox-group/props.js
new file mode 100644
index 0000000..2f818a1
--- /dev/null
+++ b/minipro_standard/uni_modules/uview-ui/components/u-checkbox-group/props.js
@@ -0,0 +1,82 @@
+export default {
+ props: {
+ // 鏍囪瘑绗�
+ name: {
+ type: String,
+ default: uni.$u.props.checkboxGroup.name
+ },
+ // 缁戝畾鐨勫��
+ value: {
+ type: Array,
+ default: uni.$u.props.checkboxGroup.value
+ },
+ // 褰㈢姸锛宑ircle-鍦嗗舰锛宻quare-鏂瑰舰
+ shape: {
+ type: String,
+ default: uni.$u.props.checkboxGroup.shape
+ },
+ // 鏄惁绂佺敤鍏ㄩ儴checkbox
+ disabled: {
+ type: Boolean,
+ default: uni.$u.props.checkboxGroup.disabled
+ },
+
+ // 閫変腑鐘舵�佷笅鐨勯鑹诧紝濡傝缃鍊硷紝灏嗕細瑕嗙洊parent鐨刟ctiveColor鍊�
+ activeColor: {
+ type: String,
+ default: uni.$u.props.checkboxGroup.activeColor
+ },
+ // 鏈�変腑鐨勯鑹�
+ inactiveColor: {
+ type: String,
+ default: uni.$u.props.checkboxGroup.inactiveColor
+ },
+
+ // 鏁翠釜缁勪欢鐨勫昂瀵革紝榛樿px
+ size: {
+ type: [String, Number],
+ default: uni.$u.props.checkboxGroup.size
+ },
+ // 甯冨眬鏂瑰紡锛宺ow-妯悜锛宑olumn-绾靛悜
+ placement: {
+ type: String,
+ default: uni.$u.props.checkboxGroup.placement
+ },
+ // label鐨勫瓧浣撳ぇ灏忥紝px鍗曚綅
+ labelSize: {
+ type: [String, Number],
+ default: uni.$u.props.checkboxGroup.labelSize
+ },
+ // label鐨勫瓧浣撻鑹�
+ labelColor: {
+ type: [String],
+ default: uni.$u.props.checkboxGroup.labelColor
+ },
+ // 鏄惁绂佹鐐瑰嚮鏂囨湰鎿嶄綔
+ labelDisabled: {
+ type: Boolean,
+ default: uni.$u.props.checkboxGroup.labelDisabled
+ },
+ // 鍥炬爣棰滆壊
+ iconColor: {
+ type: String,
+ default: uni.$u.props.checkboxGroup.iconColor
+ },
+ // 鍥炬爣鐨勫ぇ灏忥紝鍗曚綅px
+ iconSize: {
+ type: [String, Number],
+ default: uni.$u.props.checkboxGroup.iconSize
+ },
+ // 鍕鹃�夊浘鏍囩殑瀵归綈鏂瑰紡锛宭eft-宸﹁竟锛宺ight-鍙宠竟
+ iconPlacement: {
+ type: String,
+ default: uni.$u.props.checkboxGroup.iconPlacement
+ },
+ // 绔栧悜閰嶅垪鏃讹紝鏄惁鏄剧ず涓嬪垝绾�
+ borderBottom: {
+ type: Boolean,
+ default: uni.$u.props.checkboxGroup.borderBottom
+ }
+
+ }
+}
--
Gitblit v1.9.3