宜呗小程序--微信小程序
Lzk
2025-08-05 b7bcaf556aa2424e808b6e6426ab22df9cfe11c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<template>
    <view
      :class="['uv-steps',`uv-steps--${direction}`]"
        :style="[$uv.addStyle(customStyle)]"
    >
        <slot></slot>
    </view>
</template>
 
<script>
    import { func } from '@/uni_modules/uv-ui-tools/libs/function/test.js'
    import mpMixin from '@/uni_modules/uv-ui-tools/libs/mixin/mpMixin.js'
    import mixin from '@/uni_modules/uv-ui-tools/libs/mixin/mixin.js'
    import props from './props.js';
    /**
     * Steps 步骤条
     * @description 该组件一般用于完成一个任务要分几个步骤,标识目前处于第几步的场景。
     * @tutorial https://www.uvui.cn/components/steps.html
     * @property {String}            direction        row-横向,column-竖向 (默认 '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 <uv-steps current="0"><uv-steps-item title="已出库" desc="10:35" ></uv-steps-item></uv-steps>
     */
    export default {
        name: 'uv-steps',
        mixins: [mpMixin, 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 => {
                    // 先判断子组件是否存在对应的方法
                    func((child || {}).updateFromParent()) && child.updateFromParent()
                })
            },
            // 接受子组件的通知,去修改其他子组件的数据
            updateFromChild() {
                this.updateChildData()
            }
        },
        created() {
            this.children = []
        }
    }
</script>
 
<style lang="scss" scoped>
    @import '@/uni_modules/uv-ui-tools/libs/css/components.scss';
 
    .uv-steps {
        @include flex;
 
        &--column {
            flex-direction: column
        }
 
        &--row {
            flex-direction: row;
            flex: 1;
        }
    }
</style>