12345678910111213141516171819202122 |
- <view class="modal" wx:if="{{!showType&&content.provide}}">
- <view class="title">我们已经为你准备好了:</view>
- <view class="label">
- <rich-text nodes="{{content.provide}}"></rich-text>
- </view>
- </view>
- <view class="modal" wx:if="{{!showType&&content.userProvided}}">
- <view class="title">需要自己准备:</view>
- <view class="label">
- <rich-text nodes="{{content.userProvided}}"></rich-text>
- </view>
- </view>
- <view class="modal" style="background: none;" wx:if="{{dataList.length>0}}">
- <view class="recom-title">
- <!-- <text class="icon icon-gifts"></text> -->
- 商品推荐
- <!-- <text class="icon icon-gifts"></text> -->
- </view>
- <view class="label">
- <goodsList list="{{dataList}}"></goodsList>
- </view>
- </view>
|