shop.wxml 862 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!--pages/shop/shop.wxml-->
  2. <import src="../../module/header.wxml"/>
  3. <import src="../../module/caritem/caritem.wxml"/>
  4. <scroll-view
  5. class="conent"
  6. style="height:{{windowh}}rpx;"
  7. scroll-y="{{selectbar==''?'true':'false'}}"
  8. >
  9. <template
  10. is="header"
  11. data="{{title:'店铺主页',headerheight:headerheight,hasback:true}}"
  12. />
  13. <view class="shop_info">
  14. <view
  15. class="shop_img"
  16. style="background-image: url({{info.img}})"
  17. >
  18. </view>
  19. <view class="shop_detail">
  20. <view class="shop_detail_title">
  21. {{info.store_name}}
  22. </view>
  23. <view class="shop_detail_address">
  24. <image src="../../img/address.png"/>{{info.address}}
  25. </view>
  26. <view
  27. class="shop_detail_phone"
  28. data-phonenumber="{{info.phone}}"
  29. bindtap="makeCall"
  30. >
  31. <image src="../../img/phone.png"/>{{info.phone}}
  32. </view>
  33. </view>
  34. </view>
  35. </scroll-view>