index.wxml 1.1 KB

12345678910111213141516171819202122232425
  1. <view class="recommend">
  2. <view class="title acea-row row-center-wrapper">
  3. <text class="iconfont icon-zhuangshixian"></text>
  4. <text class="name">热门推荐</text>
  5. <text class="iconfont icon-zhuangshixian lefticon"></text>
  6. </view>
  7. <view class="recommendList acea-row row-between-wrapper">
  8. <view class="item" wx:for="{{host_product}}" wx:key="index" bindtap="goDetail" data-items="{{item}}">
  9. <view class="pictrue">
  10. <image src="{{item.image}}"></image>
  11. <text class="pictrue_log_big pictrue_log_class" wx:if="{{item.activity && item.activity.type ==='1'}}"
  12. >秒杀</text
  13. >
  14. <text class="pictrue_log_big pictrue_log_class" wx:if="{{item.activity && item.activity.type === '2'}}"
  15. >砍价</text
  16. >
  17. <text class="pictrue_log_big pictrue_log_class" wx:if="{{item.activity && item.activity.type === '3'}}"
  18. >拼团</text
  19. >
  20. </view>
  21. <view class="name line1">{{item.store_name}}</view>
  22. <view class="money font-color">¥<text class="num">{{item.price}}</text></view>
  23. </view>
  24. </view>
  25. </view>