From 1f07d0d2bbf95d52d2b96f0aec3a2284af619b3c Mon Sep 17 00:00:00 2001 From: quanyawei <401863037@qq.com> Date: Mon, 13 Nov 2023 10:40:38 +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