index.wxml 761 B

12345678910111213141516171819202122
  1. <view class="modal" wx:if="{{!showType&&content.provide}}">
  2. <view class="title">我们已经为你准备好了:</view>
  3. <view class="label">
  4. <rich-text nodes="{{content.provide}}"></rich-text>
  5. </view>
  6. </view>
  7. <view class="modal" wx:if="{{!showType&&content.userProvided}}">
  8. <view class="title">需要自己准备:</view>
  9. <view class="label">
  10. <rich-text nodes="{{content.userProvided}}"></rich-text>
  11. </view>
  12. </view>
  13. <view class="modal" style="background: none;" wx:if="{{dataList.length>0}}">
  14. <view class="recom-title">
  15. <!-- <text class="icon icon-gifts"></text> -->
  16. 商品推荐
  17. <!-- <text class="icon icon-gifts"></text> -->
  18. </view>
  19. <view class="label">
  20. <goodsList list="{{dataList}}"></goodsList>
  21. </view>
  22. </view>