From 6f922e8b81cacf9d6fd99ae7aeba06e8c6370e4f Mon Sep 17 00:00:00 2001 From: quanyawei <401863037@qq.com> Date: Wed, 15 Nov 2023 09:53:48 +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