contactBusiness.wxml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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 class="value">
  44. <image class="icon-map" src=""></image>
  45. <view class="address-wrap">
  46. <view class="address">地址:浙江省杭州市余杭区道浙江省杭州市余杭区道浙江省杭州市余杭区道浙江省杭州市余杭区道
  47. </view>
  48. <text class="phone" user-select>12345678910</text>
  49. </view>
  50. <image class="icon-arrow" src=""></image>
  51. </view>
  52. </view>
  53. <view class="qrcode">
  54. <image src=""></image>
  55. </view>
  56. <view class="tip">长按扫码,添加微信</view>
  57. <button
  58. class="btn-business"
  59. type="primary"
  60. bind:tap="showActionSheet">点击联系
  61. </button>
  62. </view>
  63. <van-action-sheet
  64. show="{{ booShow }}"
  65. actions="{{ actions }}"
  66. cancel-text="取消"
  67. description="13429176706可能是一个电话号码,你可以"
  68. close-on-click-overlay="{{false}}"
  69. bind:cancel="hideActionSheet"
  70. bind:select="onSelect"
  71. />