brandDetail.wxml 1.0 KB

12345678910111213141516171819202122232425262728
  1. <view class="container">
  2. <view class="brand-info">
  3. <view class="name">
  4. <image class="img" src="{{brand.app_list_pic_url}}" background-size="cover"></image>
  5. <view class="info-box">
  6. <view class="info">
  7. <text class="txt">{{brand.name}}</text>
  8. <text class="line"></text>
  9. </view>
  10. </view>
  11. </view>
  12. <view class="desc">
  13. {{brand.simple_desc}}
  14. </view>
  15. </view>
  16. <view class="cate-item">
  17. <view class="b">
  18. <block wx:for="{{goodsList}}" wx:for-index="iindex" wx:for-item="iitem">
  19. <navigator class="item {{iindex % 2 == 0 ? 'item-b' : ''}}" url="../goods/goods?id={{iitem.id}}">
  20. <image class="img" src="{{iitem.list_pic_url}}" background-size="cover"></image>
  21. <text class="name">{{iitem.name}}</text>
  22. <text class="price">¥{{iitem.retail_price}}</text>
  23. </navigator>
  24. </block>
  25. </view>
  26. </view>
  27. </view>