个人消息

This commit is contained in:
limqhz
2022-12-14 19:39:14 +08:00
parent c2fa413fea
commit 574e7c8ac1
39 changed files with 1745 additions and 24 deletions

View File

@@ -1,11 +1,20 @@
<wxs module="_"> module.exports.contains = function(arr, target) { return arr.indexOf(target) > -1; } </wxs>
<t-collapse value="{{activeValues}}" bind:change="handleChange">
<t-collapse-panel
header="关于我们"
header-right-content="{{_.contains(activeValues, 0) ? '收起' : '展开'}}"
value="{{0}}"
expandIcon
<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"
>
我们很强真肉蛋
</t-collapse-panel>
</t-collapse>
<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>