From 1e71dd86f6d0c4fc7e5143600d4bc4b50992a2a7 Mon Sep 17 00:00:00 2001 From: quanyawei <401863037@qq.com> Date: Thu, 04 Jul 2024 14:51:28 +0800 Subject: [PATCH] fix: 高德密钥修改 --- uni_modules/uview-ui/components/u-checkbox/props.js | 69 ++++++++++++++++++++++++++++++++++ 1 files changed, 69 insertions(+), 0 deletions(-) diff --git a/uni_modules/uview-ui/components/u-checkbox/props.js b/uni_modules/uview-ui/components/u-checkbox/props.js new file mode 100644 index 0000000..93f4fd9 --- /dev/null +++ b/uni_modules/uview-ui/components/u-checkbox/props.js @@ -0,0 +1,69 @@ +export default { + props: { + // checkbox��������� + name: { + type: [String, Number, Boolean], + default: uni.$u.props.checkbox.name + }, + // ���������square������������circle��������� + shape: { + type: String, + default: uni.$u.props.checkbox.shape + }, + // ��������������� + size: { + type: [String, Number], + default: uni.$u.props.checkbox.size + }, + // ������������������ + checked: { + type: Boolean, + default: uni.$u.props.checkbox.checked + }, + // ������������ + disabled: { + type: [String, Boolean], + default: uni.$u.props.checkbox.disabled + }, + // ���������������������������������������������������������parent���activeColor��� + activeColor: { + type: String, + default: uni.$u.props.checkbox.activeColor + }, + // ������������������ + inactiveColor: { + type: String, + default: uni.$u.props.checkbox.inactiveColor + }, + // ������������������������px + iconSize: { + type: [String, Number], + default: uni.$u.props.checkbox.iconSize + }, + // ������������ + iconColor: { + type: String, + default: uni.$u.props.checkbox.iconColor + }, + // label���������������������nvue������������slot������������������������������������������������������������ + label: { + type: [String, Number], + default: uni.$u.props.checkbox.label + }, + // label������������������px������ + labelSize: { + type: [String, Number], + default: uni.$u.props.checkbox.labelSize + }, + // label��������� + labelColor: { + type: String, + default: uni.$u.props.checkbox.labelColor + }, + // ������������������������������������������ + labelDisabled: { + type: [String, Boolean], + default: uni.$u.props.checkbox.labelDisabled + } + } +} -- Gitblit v1.8.0