index.wxml 817 B

1234567891011121314151617181920212223242526272829303132
  1. <view
  2. class="item-info"
  3. wx:for="{{listData}}"
  4. wx:key="index"
  5. data-item="{{item}}"
  6. bindtap="jumpBusinessDetail">
  7. <view class="top">
  8. <view class="logo">
  9. <image src="{{item.shop_img_url}}"></image>
  10. </view>
  11. <view class="info">
  12. <view class="name">{{item.shop_name}}</view>
  13. <view class="goods-count">{{item.shop_product_count}}商品 {{item.shop_follow_num}}人关注</view>
  14. </view>
  15. <button
  16. class="btn-contact"
  17. type="default"
  18. data-item="{{item}}"
  19. catch:tap="handleContact">点击联系
  20. </button>
  21. </view>
  22. <view class="bottom">
  23. <button
  24. class="tel"
  25. type="default">电话:{{item.shop_phone}}
  26. </button>
  27. <button
  28. class="wechat"
  29. type="default">微信:{{item.user_wechat_code}}
  30. </button>
  31. </view>
  32. </view>