<view class="wrap">
    <custom chineseName="步骤条" engName="steps"></custom>
    <view class="container">
        <view class="card-area">
            <view class="top-description border-bottom">默认样式</view>
            <smt-steps
                active="{{stepsActive}}"
                line-style="solid"
                steps="{{steps}}"
                active-color="#2772fb"
                step-main-class="step-main"
            >
            </smt-steps>
            <button
                bindtap="addStep"
                class="step-btn-cls"
                hover-stop-propagation="true"
                type="primary"
            >
                点击按钮添加步骤
            </button>
        </view>
        <view class="card-area">
            <view class="top-description border-bottom">执行展示</view>
            <smt-steps
                active="{{fourStepsActive}}"
                line-style="solid"
                steps="{{fourSteps}}"
                active-color="#2772fb"
                step-main-class="step-main"
            >
            </smt-steps>
            <button
                bindtap="changeActive"
                class="step-btn-cls"
                hover-stop-propagation="true"
                type="primary"
            >
                点击按钮执行步骤
            </button>
        </view>
    </view>
</view>

