contactBusiness.wxml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <view class="wrapper">
  2. <view
  3. class="list"
  4. wx:for="{{[1]}}"
  5. wx:key="item">
  6. <view
  7. class="icon-wrap">
  8. <image
  9. src=""
  10. hidden="{{true}}"></image>
  11. <image
  12. src=""
  13. hidden="{{false}}"></image>
  14. </view>
  15. <view
  16. class="goods-wrap">
  17. <view class="photo-wrap">
  18. <image src=""></image>
  19. </view>
  20. <view class="info">
  21. <view class="name-wrap">
  22. <text
  23. class="goods-name">名字名字名字名字名字名字名字名字名字名字名字</text>
  24. <text
  25. class="partner-name"
  26. user-select>上三村合作社名字名字名字名字名字名字名字名字名字名字名字</text>
  27. <text class="price">¥12.00</text>
  28. </view>
  29. <view class="count-wrap">
  30. <image
  31. class="del"
  32. src=""></image>
  33. <text class="count">9</text>
  34. <image
  35. class="add"
  36. src=""></image>
  37. </view>
  38. </view>
  39. </view>
  40. </view>
  41. <view class="business-info">
  42. <view class="label">商家信息</view>
  43. <view
  44. class="value"
  45. bind:tap="openLocationBridge">
  46. <image class="icon-map" src=""></image>
  47. <view class="address-wrap">
  48. <view class="address">地址:浙江省杭州市余杭区道浙江省杭州市余杭区道浙江省杭州市余杭区道浙江省杭州市余杭区道
  49. </view>
  50. <text class="phone" user-select>12345678910</text>
  51. </view>
  52. <image class="icon-arrow" src=""></image>
  53. </view>
  54. </view>
  55. <view class="qrcode">
  56. <image src=""></image>
  57. </view>
  58. <view class="tip">长按扫码,添加微信</view>
  59. <button
  60. class="btn-business"
  61. type="primary"
  62. bind:tap="showActionSheet">点击联系
  63. </button>
  64. </view>
  65. <van-action-sheet
  66. show="{{ booShow }}"
  67. actions="{{ actions }}"
  68. cancel-text="取消"
  69. description="13429176706可能是一个电话号码,你可以"
  70. close-on-click-overlay="{{false}}"
  71. bind:cancel="hideActionSheet"
  72. bind:select="onSelect"
  73. />