relapin_goods_list.html 785 B

12345678910111213141516171819202122232425262728
  1. <?php if(!empty($related_goods)){ ?>
  2. <h2>猜你喜欢</h2>
  3. <div class="poster_wrap">
  4. <div class="goods_wall rec-show-log module_row waterfall-container clearfix" >
  5. <volist name="related_goods" id="d">
  6. <div class="goods_box cube-acm-node waterfall-frame-0 waterfall-box waterfall-optimise-show" >
  7. <div class="pic_box lazyloadBg">
  8. <a href="{:U('/goods/'.$d['goods_id'])}" class="lazyload-img-end">
  9. <img src="{$d.image}" width="100%" />
  10. </a>
  11. </div>
  12. <div class="desc_box">
  13. <h3>{$d.name}</h3>
  14. <div class="co_box">
  15. <span class="price">¥{$d.pin_price}</span>
  16. <span class="fav_num">已团{$d.seller_count}件</span>
  17. </div>
  18. </div>
  19. </div>
  20. </volist>
  21. </div>
  22. </div>
  23. <?php } ?>