index.wxml 1.1 KB

12345678910111213141516171819
  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'}}">秒杀</text>
  12. <text class="pictrue_log_big pictrue_log_class" wx:if="{{item.activity && item.activity.type === '2'}}">砍价</text>
  13. <text class="pictrue_log_big pictrue_log_class" wx:if="{{item.activity && item.activity.type === '3'}}">拼团</text>
  14. </view>
  15. <view class='name line1'>{{item.store_name}}</view>
  16. <view class='money font-color'>¥<text class='num'>{{item.price}}</text></view>
  17. </view>
  18. </view>
  19. </view>