index.wxml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <view class="business-info">
  2. <view
  3. class="box"
  4. bind:tap="openLocationBridge">
  5. <image
  6. class="label"
  7. src="../../image/common/location.png"></image>
  8. <view
  9. class="value">地址:{{shopDetail.shop_address.address_name}}{{shopDetail.shop_address.name}}
  10. </view>
  11. <image
  12. class="arrow"
  13. src="../../image/common/arrow_2.png"></image>
  14. </view>
  15. <view
  16. class="box tel"
  17. bind:tap="showActionSheet">
  18. <image
  19. class="label"
  20. src="../../image/common/tel.png"></image>
  21. <view
  22. class="value">手机:{{shopDetail.shop_phone}}
  23. </view>
  24. <image
  25. class="arrow"
  26. src="../../image/common/arrow_2.png"></image>
  27. </view>
  28. <view class="qrcode">
  29. <image
  30. class="code"
  31. src="{{shopDetail.user_code_url}}"
  32. show-menu-by-longpress="{{true}}"></image>
  33. </view>
  34. <view class="tip">长按扫码,添加微信</view>
  35. </view>
  36. <van-action-sheet
  37. show="{{ booShow }}"
  38. actions="{{ actions }}"
  39. cancel-text="取消"
  40. description="{{shopDetail.shop_phone}}可能是一个电话号码,你可以"
  41. bind:cancel="hideActionSheet"
  42. bind:select="onSelect"
  43. />