riku
2024-11-14 00a96d6881dd10ae7d3c4f5437bfceaabe677723
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<view wx:if="{{imgUrls.length > 0}}" class="train-card">
  <view class="train-card__title" bindtap="navToTrain">
    <view class="flex-h">
      <t-icon name="chart-bubble" size="36rpx" color="var(--td-brand-color)" />
      <text>守法培训</text>
    </view>
    <view class="flex-h">
      <text class="train-card__note">更多</text>
      <t-icon
        name="chevron-right"
        size="36rpx"
        color="var(--td-text-color-primary)"
      />
    </view>
  </view>
  <t-swiper
    height="350rpx"
    duration="{{500}}"
    list="{{imgUrls}}"
    image-props="{{ { mode: 'widthFix' } }}"
    bind:click="click"
    navigation="{{ { type: 'dots-bar' } }}"
  />
</view>