From 9ab4955166b7b1370fc2a49b152353241ca9e64a Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期一, 16 十月 2023 09:22:23 +0800
Subject: [PATCH] 小程序

---
 minipro_standard/uni_modules/uview-ui/components/u-steps/u-steps.vue |   80 ----------------------------------------
 1 files changed, 0 insertions(+), 80 deletions(-)

diff --git a/minipro_standard/uni_modules/uview-ui/components/u-steps/u-steps.vue b/minipro_standard/uni_modules/uview-ui/components/u-steps/u-steps.vue
index 3ab7764..e69de29 100644
--- a/minipro_standard/uni_modules/uview-ui/components/u-steps/u-steps.vue
+++ b/minipro_standard/uni_modules/uview-ui/components/u-steps/u-steps.vue
@@ -1,80 +0,0 @@
-<template>
-	<view
-	    class="u-steps"
-	    :class="[`u-steps--${direction}`]"
-	>
-		<slot></slot>
-	</view>
-</template>
-
-<script>
-	import props from './props.js';
-	/**
-	 * Steps 姝ラ鏉�
-	 * @description 璇ョ粍浠朵竴鑸敤浜庡畬鎴愪竴涓换鍔¤鍒嗗嚑涓楠わ紝鏍囪瘑鐩墠澶勪簬绗嚑姝ョ殑鍦烘櫙銆�
-	 * @tutorial https://uviewui.com/components/steps.html
-	 * @property {String}			direction		row-妯悜锛宑olumn-绔栧悜 (榛樿 'row' )
-	 * @property {String | Number}	current			璁剧疆褰撳墠澶勪簬绗嚑姝� (榛樿 0 )
-	 * @property {String}			activeColor		婵�娲荤姸鎬侀鑹� (榛樿 '#3c9cff' )
-	 * @property {String}			inactiveColor	鏈縺娲荤姸鎬侀鑹� (榛樿 '#969799' )
-	 * @property {String}			activeIcon		婵�娲荤姸鎬佺殑鍥炬爣
-	 * @property {String}			inactiveIcon	鏈縺娲荤姸鎬佸浘鏍� 
-	 * @property {Boolean}			dot				鏄惁鏄剧ず鐐圭被鍨� (榛樿 false )
-	 * @example <u-steps current="0"><u-steps-item title="宸插嚭搴�" desc="10:35" ></u-steps-item></u-steps>
-	 */
-	export default {
-		name: 'u-steps',
-		mixins: [uni.$u.mpMixin, uni.$u.mixin, props],
-		data() {
-			return {
-			}
-		},
-		watch: {
-			children() {
-				this.updateChildData()
-			},
-			parentData() {
-				this.updateChildData()
-			}
-		},
-		computed: {
-			// 鐩戝惉鍙傛暟鐨勫彉鍖栵紝閫氳繃watch涓紝鎵嬪姩鍘绘洿鏂板瓙缁勪欢鐨勬暟鎹紝鍚﹀垯瀛愮粍浠朵笉浼氳嚜鍔ㄥ彉鍖�
-			parentData() {
-				return [this.current, this.direction, this.activeColor, this.inactiveColor, this.activeIcon, this.inactiveIcon, this.dot]
-			}
-		},
-		methods: {
-			// 鏇存柊瀛愮粍浠剁殑鏁版嵁
-			updateChildData() {
-				this.children.map(child => {
-					// 鍏堝垽鏂瓙缁勪欢鏄惁瀛樺湪瀵瑰簲鐨勬柟娉�
-					uni.$u.test.func((child || {}).updateFromParent()) && child.updateFromParent()
-				})
-			},
-			// 鎺ュ彈瀛愮粍浠剁殑閫氱煡锛屽幓淇敼鍏朵粬瀛愮粍浠剁殑鏁版嵁
-			updateFromChild() {
-				this.updateChildData()
-			}
-		},
-		created() {
-			this.children = []
-		}
-	}
-</script>
-
-<style lang="scss" scoped>
-	@import "../../libs/css/components.scss";
-
-	.u-steps {
-		@include flex;
-
-		&--column {
-			flex-direction: column
-		}
-
-		&--row {
-			flex-direction: row;
-			flex: 1;
-		}
-	}
-</style>

--
Gitblit v1.9.3