brandDetail.wxml 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. <view class="container">
  2. <auth bindlogin="onShow" />
  3. <lip-sync />
  4. <view class="brand-info">
  5. <view class="name">
  6. <image class="img" src="{{brand.listPicUrl}}" background-size="cover"></image>
  7. <view class="info-box">
  8. <view class="info">
  9. <!-- <text class="txt">{{brand.name}}</text>
  10. <text class="line"></text> -->
  11. </view>
  12. </view>
  13. </view>
  14. <view class="desc">
  15. {{brand.simpleDesc}}
  16. </view>
  17. </view>
  18. <view class="cate-item">
  19. <view class="b">
  20. <block wx:for="{{goodsList}}" wx:for-index="iindex" wx:for-item="iitem">
  21. <navigator hover-class="none" class="item {{iindex % 2 == 0 ? 'item-b' : ''}}" url="../goods/goods?id={{iitem.id}}&isBrand=true">
  22. <image class="img" src="{{iitem.list_pic_url}}" background-size="cover"></image>
  23. <text class="name">{{iitem.name}}</text>
  24. <text class="price">¥{{iitem.retail_price}}</text>
  25. </navigator>
  26. </block>
  27. </view>
  28. <view class="loadmore" v-if="{{loadSuccess}}">
  29. <text>全部加载完成</text>
  30. </view>
  31. </view>
  32. </view>