21 lines
806 B
Plaintext
21 lines
806 B
Plaintext
<t-steps class="demo-steps" current="{{customStepCurrent}}" readonly="true" layout="vertical">
|
|
<t-step-item
|
|
wx:for="{{customStepItems}}"
|
|
wx:key="key"
|
|
wx:item="item"
|
|
icon="slot"
|
|
title="{{item.title}}"
|
|
content="{{item.content}}"
|
|
t-class-inner="t-class-inner t-class-inner--{{item.status}}"
|
|
t-class-title="t-class-title {{item.title? '' : 't-class-title--no'}}"
|
|
t-class-description="t-class-description"
|
|
t-class-extra="t-class-extra"
|
|
>
|
|
<view
|
|
slot="icon"
|
|
class="t-icon-slot t-icon-slot--{{item.status}} {{item.title? '' : 't-icon-slot--child'}}"
|
|
></view>
|
|
<view slot="extra">{{item.extra}}</view>
|
|
</t-step-item>
|
|
</t-steps>
|