riku
2026-01-20 91f7d372fa318e859efd20d71eafbd34274902c4
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
27
28
29
30
31
32
33
34
35
36
<t-sticky z-index="{{1000}}">
  <view class="filter-wrap">
    <view class="filter-item" bind:tap="handleSort">
      <text style="color: {{sort !== '' ? color : '' }}">{{ sortText }}</text>
      <view class="filter-sort">
        <t-icon
          prefix="wr"
          name="arrow_drop_up"
          size="18rpx"
          style="color:{{sort === 'asc' ? color : '#bbb'}}"
        />
        <t-icon
          prefix="wr"
          name="arrow_drop_down"
          size="18rpx"
          style="color:{{sort === 'desc' ? color : '#bbb'}}"
        />
      </view>
    </view>
    <view class="filter-item" bindtap="changeStyle">
      {{displayMode == 0 ? '网格排列' :'列表排列'}}
      <view class="switch-btn">
        <view
          class="{{displayMode == 0 ? 'switch-selected' : 'switch-unselected'}} switch-btn-left"
        >
          <t-icon name="component-grid" color="#333" size="32rpx" />
        </view>
        <view
          class="{{displayMode == 1 ? 'switch-selected' :'switch-unselected'}} switch-btn-right"
        >
          <t-icon name="list" color="#333" size="32rpx" />
        </view>
      </view>
    </view>
  </view>
</t-sticky>