yiming
2024-03-13 f9d4b09377c5471e1202be2fef2c89de27b6654d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<t-popup
 visible="{{visible}}"
 placement="right"
 bind:visible-change="close"
 data-index="5"
 close-btn="{{closeBtn}}"
>
    <view class="content">
        <slot name="filterSlot" />
        <view class="filter-btns-wrap">
            <view class="filter-btn btn-reset" bind:tap="reset">重置</view>
            <view class="filter-btn btn-confirm" bind:tap="confirm" data-index="5">
                确定
            </view>
        </view>
    </view>
</t-popup>