From d8b41fff43a2cee6a8f714ffa807623b15803786 Mon Sep 17 00:00:00 2001 From: quanyawei <401863037@qq.com> Date: Fri, 20 Oct 2023 15:21:35 +0800 Subject: [PATCH] fix:立行立改Uniapp小程序新建项目 --- uni_modules/uview-ui/components/u-rate/props.js | 69 ++++++++++++++++++++++++++++++++++ 1 files changed, 69 insertions(+), 0 deletions(-) diff --git a/uni_modules/uview-ui/components/u-rate/props.js b/uni_modules/uview-ui/components/u-rate/props.js new file mode 100644 index 0000000..2a56350 --- /dev/null +++ b/uni_modules/uview-ui/components/u-rate/props.js @@ -0,0 +1,69 @@ +export default { + props: { + // ������v-model��������������������������������� + value: { + type: [String, Number], + default: uni.$u.props.rate.value + }, + // ������������������������ + count: { + type: [String, Number], + default: uni.$u.props.rate.count + }, + // ������������������ + disabled: { + type: Boolean, + default: uni.$u.props.rate.disabled + }, + // ������������ + readonly: { + type: Boolean, + default: uni.$u.props.rate.readonly + }, + // ������������������������px + size: { + type: [String, Number], + default: uni.$u.props.rate.size + }, + // ��������������������� + inactiveColor: { + type: String, + default: uni.$u.props.rate.inactiveColor + }, + // ��������������� + activeColor: { + type: String, + default: uni.$u.props.rate.activeColor + }, + // ������������������������������px + gutter: { + type: [String, Number], + default: uni.$u.props.rate.gutter + }, + // ������������������������������ + minCount: { + type: [String, Number], + default: uni.$u.props.rate.minCount + }, + // ������������������ + allowHalf: { + type: Boolean, + default: uni.$u.props.rate.allowHalf + }, + // ������������������(������) + activeIcon: { + type: String, + default: uni.$u.props.rate.activeIcon + }, + // ���������������������(������) + inactiveIcon: { + type: String, + default: uni.$u.props.rate.inactiveIcon + }, + // ������������������������������������������ + touchable: { + type: Boolean, + default: uni.$u.props.rate.touchable + } + } +} -- Gitblit v1.8.0