index.wxml 920 B

12345678910111213141516171819202122232425262728293031323334
  1. <t-popup visible="{{show}}" placement="bottom" bind:visible-change="closePromotionPopup">
  2. <view class="promotion-popup-container">
  3. <view class="promotion-popup-close" bindtap="closePromotionPopup">
  4. <t-icon name="close" size="36rpx" />
  5. </view>
  6. <view class="promotion-popup-title">
  7. <view class="title">{{title}}</view>
  8. </view>
  9. <view class="promotion-popup-content">
  10. <view class="promotion-detail-list">
  11. <view
  12. class="list-item"
  13. wx:for="{{list}}"
  14. wx:key="index"
  15. bindtap="change"
  16. data-index="{{index}}"
  17. >
  18. <view class="tag">{{item.tag}}</view>
  19. <view class="content">
  20. <text class="list-content">{{item.label ? item.label : ''}}</text>
  21. </view>
  22. <t-icon
  23. class="collect-btn"
  24. name="chevron-right"
  25. size="40rpx"
  26. color="#bbb"
  27. />
  28. </view>
  29. </view>
  30. </view>
  31. <slot name="promotion-bottom" />
  32. </view>
  33. </t-popup>