brand.wxml 546 B

12345678910111213141516
  1. <view class="container">
  2. <view class="brand-list">
  3. <navigator url="../brandDetail/brandDetail?id={{item.id}}" class="item" wx:for="{{brandList}}" wx:key="id">
  4. <view class="img-bg">
  5. <image src="{{item.picUrl}}" background-size="cover"></image>
  6. </view>
  7. <view class="txt-box">
  8. <view class="line">
  9. <text class="name">{{item.name}}</text>
  10. <text class="s">|</text>
  11. <text class="price">{{item.floorPrice}}元起</text>
  12. </view>
  13. </view>
  14. </navigator>
  15. </view>
  16. </view>