brand.wxml 696 B

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