From 64b432916af9c9218ab3f3eca614e26c542142ae Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期二, 07 十一月 2023 15:47:13 +0800 Subject: [PATCH] bug --- minipro_standard/uni_modules/uview-ui/components/u-steps/props.js | 39 +++++++++++++++++++++++++++++++++++++++ 1 files changed, 39 insertions(+), 0 deletions(-) diff --git a/minipro_standard/uni_modules/uview-ui/components/u-steps/props.js b/minipro_standard/uni_modules/uview-ui/components/u-steps/props.js new file mode 100644 index 0000000..6d4c768 --- /dev/null +++ b/minipro_standard/uni_modules/uview-ui/components/u-steps/props.js @@ -0,0 +1,39 @@ +export default { + props: { + // 鎺掑垪鏂瑰悜 + direction: { + type: String, + default: uni.$u.props.steps.direction + }, + // 璁剧疆绗嚑涓楠� + current: { + type: [String, Number], + default: uni.$u.props.steps.current + }, + // 婵�娲荤姸鎬侀鑹� + activeColor: { + type: String, + default: uni.$u.props.steps.activeColor + }, + // 鏈縺娲荤姸鎬侀鑹� + inactiveColor: { + type: String, + default: uni.$u.props.steps.inactiveColor + }, + // 婵�娲荤姸鎬佺殑鍥炬爣 + activeIcon: { + type: String, + default: uni.$u.props.steps.activeIcon + }, + // 鏈縺娲荤姸鎬佸浘鏍� + inactiveIcon: { + type: String, + default: uni.$u.props.steps.inactiveIcon + }, + // 鏄惁鏄剧ず鐐圭被鍨� + dot: { + type: Boolean, + default: uni.$u.props.steps.dot + } + } +} -- Gitblit v1.9.3