yiming
2024-03-05 0375a599e25b7f27c57d8c00f801761d9cce8aa2
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
<t-popup visible="{{show}}" placement="bottom" bind:visible-change="closePromotionPopup">
    <view class="promotion-popup-container">
        <view class="promotion-popup-close" bindtap="closePromotionPopup">
            <t-icon name="close" size="36rpx" />
        </view>
        <view class="promotion-popup-title">
            <view class="title">{{title}}</view>
        </view>
        <view class="promotion-popup-content">
            <view class="promotion-detail-list">
                <view
                  class="list-item"
                  wx:for="{{list}}"
                  wx:key="index"
                  bindtap="change"
                  data-index="{{index}}"
                >
                    <view class="tag">{{item.tag}}</view>
                    <view class="content">
                        <text class="list-content">{{item.label ? item.label : ''}}</text>
                    </view>
                    <t-icon
                      class="collect-btn"
                      name="chevron-right"
                      size="40rpx"
                      color="#bbb"
                    />
                </view>
            </view>
        </view>
        <slot name="promotion-bottom" />
    </view>
</t-popup>