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
| <!--components/info-cards/index.wxml-->
| <view class="info-cards">
| <!-- <t-sticky> -->
| <view class="info-cards__title">
| <t-icon
| name="control-platform"
| size="36rpx"
| color="var(--td-brand-color)"
| />
| <text>{{cardTitle}}</text>
| </view>
| <t-divider />
| <!-- </t-sticky> -->
| <block wx:for="{{infoList}}" wx:for-index="index" wx:key="index">
| <info-card
| data-index="{{index}}"
| title="{{item.title}}"
| desc="{{item.desc}}"
| time="{{item.time}}"
| browse="{{item.browse}}"
| imgSrc="{{item.imgSrc}}"
| bindnavTo="navTo"
| ></info-card>
| <t-divider />
| </block>
| </view>
|
|