shop.wxml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!--component/shop/shop.wxml-->
  2. <wxs src="../../wxs/tool.wxs" module="tool"></wxs>
  3. <view class="shop_item z-padding-lr-24 z-padding-t-24 z-radius-16 z-margin-b-24" bindtap="shopTap">
  4. <image src="{{tool.cdn(info.logo_image)}}" class="shop_img z-flex-0 z-radius-16 z-margin-r-16" mode="aspectFill" lazy-load
  5. lazy-load-margin="0" />
  6. <view class="shop_item_info">
  7. <view class="shop_item_info_top hidden">
  8. {{info.abbr}}
  9. </view>
  10. <view class="rate">
  11. <image src="../../static/index/allstar.png" wx:for="{{tool.parInt(info.commentScore)}}" class="star z-margin-r-8" mode="" />
  12. <image src="../../static/index/halfstar.png" wx:if="{{!tool.full(info.commentScore)}}" class="star z-margin-r-8" mode="" />
  13. <block wx:if="{{!tool.full(info.commentScore)}}">
  14. <image src="../../static/index/nostar.png" wx:for="{{5 - tool.parInt(info.commentScore) -1 }}" class="star z-margin-r-8" mode="" />
  15. </block>
  16. <block wx:else>
  17. <image src="../../static/index/nostar.png" wx:for="{{5 - tool.parInt(info.commentScore) }}" class="star z-margin-r-8" mode="" />
  18. </block>
  19. <text class="z-font-w">{{tool.toFix(info.commentScore,1)}}</text>
  20. </view>
  21. <view class="shop_item_info_top text_999 z-font-22 z-margin-t-8">
  22. <view class="hidden">
  23. {{info.city}}{{info.address}}
  24. </view>
  25. <view class="text_333">{{tool.toFix(info.distance)}}km</view>
  26. </view>
  27. <view class="shop_item_info_midea z-margin-tb-16">
  28. <view class="shop_item_info_midea_item z-flex z-padding-lr-8 z-font-22 z-radius-4 text_999"
  29. wx:for="{{tool.split(info.categoryname)}}" wx:key="*this">
  30. {{item}}
  31. </view>
  32. </view>
  33. <view class="shop-goods z-flex-c z-padding-tb-16" wx:for="{{info.goodsList}}">
  34. <image src="/static/index/shopgoods.png" class="icon"></image>
  35. <view class="price z-margin-lr-16 z-font-26">¥{{item.price}}</view>
  36. <view class="text_999 z-flex-1 z-font-24 hidden">{{item.name}}</view>
  37. <image src="/static/index/brey-more.png" class="more"></image>
  38. </view>
  39. </view>
  40. </view>