From 627c3e0a6920131d75eafa4646db373ccc936546 Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期四, 26 十月 2023 13:52:07 +0800
Subject: [PATCH] 小程序diamante
---
minipro_standard/uni_modules/uview-ui/components/u-slider/props.js | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 54 insertions(+), 0 deletions(-)
diff --git a/minipro_standard/uni_modules/uview-ui/components/u-slider/props.js b/minipro_standard/uni_modules/uview-ui/components/u-slider/props.js
new file mode 100644
index 0000000..433a7b5
--- /dev/null
+++ b/minipro_standard/uni_modules/uview-ui/components/u-slider/props.js
@@ -0,0 +1,54 @@
+export default {
+ props: {
+ // 鏈�灏忓彲閫夊��
+ min: {
+ type: [Number, String],
+ default: uni.$u.props.slider.min
+ },
+ // 鏈�澶у彲閫夊��
+ max: {
+ type: [Number, String],
+ default: uni.$u.props.slider.max
+ },
+ // 姝ラ暱锛屽彇鍊煎繀椤诲ぇ浜� 0锛屽苟涓斿彲琚�(max - min)鏁撮櫎
+ step: {
+ type: [Number, String],
+ default: uni.$u.props.slider.step
+ },
+ // 褰撳墠鍙栧��
+ value: {
+ type: [Number, String],
+ default: uni.$u.props.slider.value
+ },
+ // 婊戝潡鍙充晶宸查�夋嫨閮ㄥ垎鐨勮儗鏅壊
+ activeColor: {
+ type: String,
+ default: uni.$u.props.slider.activeColor
+ },
+ // 婊戝潡宸︿晶鏈�夋嫨閮ㄥ垎鐨勮儗鏅壊
+ inactiveColor: {
+ type: String,
+ default: uni.$u.props.slider.inactiveColor
+ },
+ // 婊戝潡鐨勫ぇ灏忥紝鍙栧�艰寖鍥翠负 12 - 28
+ blockSize: {
+ type: [Number, String],
+ default: uni.$u.props.slider.blockSize
+ },
+ // 婊戝潡鐨勯鑹�
+ blockColor: {
+ type: String,
+ default: uni.$u.props.slider.blockColor
+ },
+ // 绂佺敤鐘舵��
+ disabled: {
+ type: Boolean,
+ default: uni.$u.props.slider.disabled
+ },
+ // 鏄惁鏄剧ず褰撳墠鐨勯�夋嫨鍊�
+ showValue: {
+ type: Boolean,
+ default: uni.$u.props.slider.showValue
+ }
+ }
+}
--
Gitblit v1.9.3