litian
2024-02-28 50aaa9d0da14c1568107f29813c7fe5858b033b3
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>