index.wxml 964 B

123456789101112131415161718192021222324252627
  1. <t-popup visible="{{show}}" placement="bottom" bind:visible-change="onCancel" close-btn="{{showCloseButton}}">
  2. <view class="popup-content">
  3. <view class="header"> {{title}} </view>
  4. <view class="options cell--noborder">
  5. <t-cell
  6. wx:for="{{_options}}"
  7. wx:key="title"
  8. t-class="cell"
  9. title="{{item.title}}"
  10. bindclick="onOptionTap"
  11. data-index="{{index}}"
  12. border="{{false}}"
  13. >
  14. <view slot="right-icon">
  15. <t-icon name="check-circle-filled" size="36rpx" color="#fa4126" wx:if="{{item.checked}}" />
  16. <t-icon name="circle" size="36rpx" color="#C7C7C7" wx:else />
  17. </view>
  18. </t-cell>
  19. </view>
  20. <view class="button-bar" wx:if="{{showConfirmButton}}">
  21. <t-button class="btnWrapper" wx:if="{{showConfirmButton}}" t-class="btn" bindtap="onConfirm">
  22. {{confirmButtonText}}
  23. </t-button>
  24. </view>
  25. </view>
  26. </t-popup>
  27. <t-toast id="t-toast" />