index.wxml 408 B

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